:root {
  --neon-green: #00ff88;
  --neon-blue: #00d4ff;
  --dark-bg: #0a0a0a;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --text-white: #ffffff;
  --text-gray: #909090;
  --text-dark-gray: #707070;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
  font-size: 1rem;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.875rem;
  position: relative;
  z-index: 2;
}

nav {
  background: #0a0a0a;
  backdrop-filter: none;
  border-bottom: 2px solid #2a2a2a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo:hover {
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #909090;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #00ff88;
}

.age-restriction-badge {
  background: #00ff88;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: none;
  letter-spacing: 2px;
}

.hero {
  text-align: center;
  padding: 2.5rem 0;
  position: relative;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--diamond-white), var(--emerald-glow), var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  letter-spacing: 1px;
  animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--mint-fresh);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
}

.cta-button {
  background: linear-gradient(135deg, var(--royal-green), var(--emerald-bright));
  color: white;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
  border-color: var(--gold-accent);
}

.cta-button span {
  font-size: 1.25rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

.features {
  padding: 1.5rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--mint-fresh);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
  border-radius: 12px;
  padding: 0.875rem 0.75rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature-card:hover::before {
  animation: diamondSweep 1.5s ease-in-out infinite;
}

@keyframes diamondSweep {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4), 0 0 30px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: var(--gold-accent);
}

.feature-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 71, 171, 0.3));
}

.feature-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--royal-green);
  margin-bottom: 0.375rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.75rem;
}

.disclaimer {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.15), rgba(30, 144, 255, 0.1));
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 2px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 71, 171, 0.2);
}

.disclaimer-icon {
  font-size: 1.875rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.disclaimer-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--mint-fresh);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.disclaimer-content p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--mint-fresh);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

footer {
  background: #0a0a0a;
  backdrop-filter: none;
  border-top: 2px solid #2a2a2a;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: #00ff88;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #909090;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00ff88;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  color: #707070;
  font-size: 0.875rem;
}

.faq-grid {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 71, 171, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.15);
}

.faq-item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
  border-color: var(--emerald-bright);
}

.faq-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--royal-green);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.8125rem;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  nav {
    padding: 0.75rem 0;
  }

  .logo {
    font-size: 1.125rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.8125rem;
  }

  .hero {
    padding: 1.75rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .cta-button span {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .features {
    padding: 1rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-card {
    padding: 0.75rem 0.625rem;
  }

  .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
  }

  .feature-card h3 {
    font-size: 0.8125rem;
  }

  .feature-card p {
    font-size: 0.6875rem;
  }

  .disclaimer {
    flex-direction: column;
    padding: 1.25rem;
  }

  .disclaimer-icon {
    font-size: 1.5rem;
  }

  .disclaimer-content h3 {
    font-size: 0.9375rem;
  }

  .disclaimer-content p {
    font-size: 0.75rem;
  }

  footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-section h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    font-size: 0.6875rem;
  }
}

/* Additional page styles */
.header {
  background: linear-gradient(135deg, rgba(8, 37, 103, 0.95), rgba(0, 71, 171, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 71, 171, 0.4);
}

.header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.875rem;
}

.logo-text {
  color: var(--mint-fresh);
  font-size: 1.25rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.main-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.95));
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 71, 171, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.content-section h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--royal-green);
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--royal-green), var(--emerald-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

.content-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--emerald-bright);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.content-section ul, .content-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.content-section a {
  color: var(--emerald-bright);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.content-section a:hover {
  color: var(--gold-accent);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.content-section strong {
  color: var(--royal-green);
  font-weight: 700;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 71, 171, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.15);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
  border-color: var(--emerald-bright);
}

.faq-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--royal-green);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Fruit theme variables for consistency */
:root {
  --strawberry-red: #ff4d6d;
  --orange: #ff9500;
  --lemon-yellow: #ffd60a;
  --kiwi-green: #6fc174;
  --grape-purple: #9d4edd;
  --watermelon-pink: #ff758f;
  --text-primary: #1a202c;
  --text-secondary: #2d3748;
  --text-light: #4a5568;
  --bg-light: #F8FAFC;
  --bg-card: #ffffff;
  --border-fruit: rgba(255, 77, 109, 0.2);
}

@media (max-width: 768px) {
  .content-section {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .content-section h1 {
    font-size: 1.5rem;
  }

  .content-section h2 {
    font-size: 1.25rem;
  }

  .content-section h3 {
    font-size: 1rem;
  }

  .content-section p,
  .content-section li {
    font-size: 0.875rem;
  }

  .faq-item {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1rem;
  }
}
