:root {
  --primary-color: #7b2cbf;
  --primary-glow: rgba(123, 44, 191, 0.6);
  --secondary-color: #ff007f;
  --secondary-glow: rgba(255, 0, 127, 0.6);
  --bg-dark: #0a0514;
  --card-bg: rgba(20, 10, 30, 0.6);
  --card-border: rgba(123, 44, 191, 0.3);
  --text-main: #f0f0f5;
  --text-muted: #a09cb0;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(123, 44, 191, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 127, 0.15), transparent 25%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glassmorphism utilities */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e0b0ff, #ff80bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--primary-glow);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

p {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all var(--transition-speed) ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--primary-glow);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--secondary-glow);
}

/* Navigation */
header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}

.hero-content {
  flex: 1.2;
  text-align: left;
}

.hero p.subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 0 40px 0;
  color: var(--text-muted);
}

.hero-graphics {
  flex: 1;
  position: relative;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Cards Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating-card {
  position: absolute;
  padding: 15px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.floating-card.card-1 {
  top: 15%;
  left: 0;
  animation-delay: 0s;
  border-color: rgba(0, 255, 204, 0.5);
  color: #00ffcc;
}

.floating-card.card-2 {
  top: 45%;
  right: -10%;
  animation-delay: 2s;
  border-color: rgba(255, 0, 127, 0.5);
  color: #ff007f;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
  border-color: rgba(224, 176, 255, 0.5);
  color: #e0b0ff;
}

.graphic-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  text-align: center;
  transition: transform var(--transition-speed);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #fff;
}

/* Streaming & AI Support */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.support-card {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.pricing-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform var(--transition-speed);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border-color: var(--secondary-color);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-sub {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #e0b0ff;
  font-size: 1.2rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  padding: 30px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(123, 44, 191, 0.2);
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.author-info h4 {
  color: #fff;
}

/* Footer */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--card-border);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-link:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero p.subtitle {
    margin: 0 auto 40px auto;
  }
  
  .hero-graphics {
    width: 100%;
    min-height: 300px;
  }

  .floating-card.card-2 {
    right: 0;
  }
  
  .nav-links {
    display: none; /* Hide nav links on small screens to keep it simple */
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .footer-content {
    gap: 20px;
  }
}

/* Utility layout classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
