/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0b0f2b 0%, #1e1e2f 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style-position: inside;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(11, 15, 43, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e0e0e0;
}

nav a:hover {
  color: #00c6ff;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  flex: 1;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 800;
}

.hero-content h2 {
  font-size: 1.8rem;
  color: #a0a0ff;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Store Badge */
.store-badge a img {
  height: 60px; /* Adjust size as needed */
  transition: transform 0.3s;
}

.store-badge a:hover img {
  transform: scale(1.05);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.device-composition {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-image {
  width: 100%;
  height: auto;
  z-index: 1;
  border: 12px solid #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0,0,0,0.5);
  background-color: #000;
}

.mobile-image {
  position: absolute;
  width: 25%;
  bottom: -10%;
  right: -5%;
  z-index: 2;
  border: 8px solid #1a1a1a;
  border-radius: 24px;
  box-shadow: 0 0 0 1px #333, 0 10px 30px rgba(0,0,0,0.6);
  background-color: #000;
}

/* Content Pages (Privacy, Terms) */
.content {
  padding: 60px 20%;
  line-height: 1.8;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  border-bottom: 2px solid #0072ff;
  padding-bottom: 10px;
  display: inline-block;
}

.content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #00c6ff;
}

.content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #a0a0ff;
}

.content p {
  margin-bottom: 20px;
  color: #d0d0d0;
}

.content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: #d0d0d0;
}

.content li {
  margin-bottom: 10px;
}

.content a {
  color: #00c6ff;
}

.content a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(11, 15, 43, 0.9);
  color: #888;
  font-size: 0.9rem;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .platforms {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .content {
    padding: 40px 5%;
  }
  
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-image {
    right: 0;
    bottom: -15%;
    width: 30%;
  }
}
