:root {
  --ice-blue: #00d4ff;
  --ice-cyan: #00ffff;
  --deep-blue: #0047ab;
  --ocean-dark: #001f3f;
  --snow-white: #f0f8ff;
  --ice-white: #e6f7ff;
  --frost: #b3e5fc;
  --winter-blue: #4dd0e1;
  --aurora: #00bcd4;
  --frozen: #80deea;
  --ice-shadow: rgba(0, 212, 255, 0.4);
  --ocean-shadow: rgba(0, 71, 171, 0.5);
  --text-ice: #e0f7fa;
  --text-frost: #b2ebf2;
  --border-ice: #4dd0e1;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #001f3f 0%, #003d5c 50%, #001f3f 100%);
  color: var(--snow-white);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
  font-size: 0.9375rem;
}

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

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 6px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

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

nav {
  background: rgba(0, 31, 63, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--ice-blue);
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.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, var(--ice-cyan), var(--ice-blue), var(--winter-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ice-cyan), var(--ice-blue));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--ice-cyan);
}

.logo:hover::after {
  width: 100%;
}

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

.nav-links a {
  color: var(--text-ice);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--ice-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--ice-cyan);
}

.nav-links a:hover {
  color: var(--ice-cyan);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.nav-links a:hover::before {
  width: 100%;
}

.age-restriction-badge {
  background: linear-gradient(135deg, var(--ice-blue), var(--aurora));
  color: var(--ocean-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.6875rem;
  box-shadow: 0 4px 15px var(--ice-shadow), 0 0 20px rgba(0, 212, 255, 0.4);
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.age-restriction-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--ice-shadow), 0 0 30px rgba(0, 255, 255, 0.6);
}

footer {
  background: rgba(0, 31, 63, 0.85);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--ice-blue);
  padding: 2rem 0 1rem;
  margin-top: 3rem;
  box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.3);
}

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

.footer-section h4 {
  color: var(--ice-cyan);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

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

.footer-section ul li a {
  color: var(--text-frost);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--ice-cyan);
  transform: translateX(4px);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-ice);
  color: var(--text-frost);
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  nav {
    padding: 0.75rem 0;
  }

  .logo {
    font-size: 1.125rem;
  }

  .nav-links {
    gap: 1rem;
  }

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

  .age-restriction-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.625rem;
    letter-spacing: 1px;
  }

  footer {
    padding: 1.5rem 0 0.75rem;
  }

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

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

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

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

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

.header {
  background: rgba(0, 31, 63, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--ice-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.logo-text {
  color: var(--ice-cyan);
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.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 1.5rem;
  background: rgba(0, 61, 92, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
  border: 2px solid var(--ice-blue);
}

.content-section h1 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ice-cyan), var(--ice-blue), var(--winter-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  line-height: 1.2;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ice-cyan);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-ice);
  padding-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  line-height: 1.3;
}

.content-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--winter-blue);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.content-section p {
  color: var(--text-ice);
  line-height: 1.6;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

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

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

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

.content-section a:hover {
  color: var(--winter-blue);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

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

.faq-item {
  background: rgba(0, 61, 92, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--border-ice);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
  border-color: var(--ice-cyan);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--snow-white);
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.3;
}

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

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

  .content-section {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

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

  .content-section h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
  }

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

  .content-section p,
  .content-section li {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .content-section ul, .content-section ol {
    margin-left: 1.25rem;
  }

  .faq-item {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .faq-item h3 {
    font-size: 0.9375rem;
  }

  .faq-item p {
    font-size: 0.8125rem;
  }

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