:root {
  --primary: #8b5cf6;
  --primary-glow: rgba(139, 92, 246, 0.5);
  --secondary: #7c3aed;
  --accent: #c4b5fd;
  --accent-glow: rgba(196, 181, 253, 0.3);
  --bg-dark: #080114;
  --bg-mid: #0d0221;
  --bg-purple: #1e0a3a;
  --card-bg: rgba(30, 10, 58, 0.7);
  --card-border: rgba(139, 92, 246, 0.25);
  --text-white: #ffffff;
  --text-gray: #cbd5e1;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-weight: 400;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-purple) 50%, var(--bg-dark) 100%);
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 2, 33, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 20px var(--primary-glow);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px var(--primary-glow);
}

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

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary-glow);
}

.age-badge {
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-purple) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('ban.jpeg');
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 var(--secondary), 8px 8px 24px var(--primary-glow);
  animation: fadeInUp 0.8s var(--ease);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--ease);
}

.cta-button {
  background: var(--primary);
  color: var(--text-white);
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 0 var(--secondary), 0 12px 32px var(--primary-glow);
  animation: fadeInUp 1.2s var(--ease);
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 0 var(--secondary), 0 16px 40px var(--primary-glow);
}

.cta-button:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--secondary), 0 8px 24px var(--primary-glow);
}

section {
  padding: 100px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  text-shadow: 3px 3px 0 var(--secondary), 6px 6px 20px var(--primary-glow);
}

.download-section {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 12px 40px var(--primary-glow);
  text-align: center;
}

.download-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--secondary);
}

.download-section p {
  color: var(--text-gray);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.email-form {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.email-form input {
  padding: 16px 24px;
  border: 2px solid var(--card-border);
  border-radius: 12px;
  background: rgba(13, 2, 33, 0.6);
  color: var(--text-white);
  font-size: 1rem;
  font-family: 'Work Sans', sans-serif;
  transition: all 0.3s var(--ease);
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.email-form button {
  padding: 16px 32px;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 0 var(--secondary), 0 8px 24px var(--primary-glow);
}

.email-form button:hover {
  transform: scale(1.02);
}

.success-message {
  display: none;
  padding: 24px;
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px var(--primary-glow);
  border-color: var(--primary);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-content p {
  margin-bottom: 24px;
  color: var(--text-gray);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.badge {
  text-align: center;
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.badge p {
  color: var(--accent);
  font-weight: 600;
}

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

.faq-item {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-gray);
  line-height: 1.7;
}

.disclaimer {
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer h2 {
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 2rem;
}

.disclaimer p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

footer {
  background: rgba(8, 1, 20, 0.9);
  border-top: 2px solid var(--card-border);
  padding: 60px 20px 32px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 32px;
}

.footer-age-badge {
  background: var(--primary);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px var(--primary-glow);
}

.footer-warning {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 0.95rem;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-purple);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 48px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 16px 48px var(--primary-glow);
  animation: modalSlideIn 0.4s var(--ease);
}

.modal-content h2 {
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 2rem;
}

.modal-content p {
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.modal-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-confirm {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 0 var(--secondary);
}

.btn-confirm:hover {
  transform: translateY(-2px);
}

.btn-decline {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent);
  border: 2px solid var(--card-border);
}

.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.content-page .container {
  max-width: 900px;
  padding: 40px 20px;
}

.content-page h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 3px 3px 0 var(--secondary);
}

.content-page h2 {
  font-size: 2rem;
  margin: 48px 0 24px;
  color: var(--accent);
}

.content-page p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.content-page ul {
  margin-left: 32px;
  margin-bottom: 24px;
}

.content-page li {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.scoring-table th {
  background: var(--primary);
  color: var(--text-white);
  padding: 16px;
  text-align: left;
  font-weight: 700;
}

.scoring-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-gray);
}

.scoring-table tr:last-child td {
  border-bottom: none;
}

.scoring-table tr:hover {
  background: rgba(139, 92, 246, 0.1);
}

.tips-section {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  margin: 48px 0;
}

.tips-section h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.tips-section ul {
  list-style: none;
  margin-left: 0;
}

.tips-section li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.tips-section li::before {
  content: '⚾';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    background: rgba(13, 2, 33, 0.98);
    backdrop-filter: blur(12px);
    padding: 100px 32px;
    transition: right 0.4s var(--ease);
    border-left: 2px solid var(--card-border);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .download-section {
    padding: 40px 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    gap: 32px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .modal-content {
    padding: 32px 24px;
    margin: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  section {
    padding: 60px 20px;
  }
}