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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #0E0F13;
  color: #fff;
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* === COLORS === */
:root {
  --bg: #0E0F13;
  --card: #16181F;
  --text: #FFFFFF;
  --text-muted: #A5A6AB;
  --border: #26282F;
  --primary: #2B50FF;
  --primary-hover: #3B6FFF;
  --green: #00B045;
  --orange: #FF9100;
  --gradient: linear-gradient(90deg,#734BFF,#A970FF);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin: 48px 0;
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
  font-size: 1.875rem;
  font-weight: 700;
}

.section:first-of-type {
  margin-top: 24px;
}

.section:last-of-type {
  margin-bottom: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  transform: translateZ(0);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.card h3, .card h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 16px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}
p {
  color: var(--text-muted);
  margin-bottom: 1em;
  font-size: 0.9375rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  font-size: 1rem;
}

/* blue primary */
.btn-primary {
  background-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}

/* green (registration) */
.btn-green {
  background-color: var(--green);
}
.btn-green:hover {
  filter: brightness(1.15);
}

/* gray secondary */
.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #5a6268;
  color: #fff;
}

/* orange (bonus) */
.btn-orange {
  background-color: var(--orange);
}
.btn-orange:hover {
  filter: brightness(1.15);
}

/* gradient promo */
.btn-gradient {
  background: var(--gradient);
}
.btn-gradient:hover {
  opacity: 0.9;
}

/* === NAV / HEADER === */
.header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav a:hover {
  color: var(--primary);
}

/* === IMAGES === */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 16px 20px;
  background-color: var(--card);
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer-section a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 5px;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--card);
  border-right: 1px solid var(--border);
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active + .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  text-align: center;
}

.mobile-menu-logo {
  height: 40px;
  width: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu a svg {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

/* === HERO SECTION === */
.hero {
  background-color: var(--bg);
  padding: 60px 0;
  text-align: center;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.hero-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-banner {
    order: -1;
    height: 250px;
  }
  
  .hero-banner-img {
    max-height: 100%;
    object-fit: contain;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    margin: 0 auto 30px;
    max-width: 90%;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-features {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .hero-feature {
    justify-content: center;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 0;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    max-width: 95%;
  }
  
  .hero-buttons .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .hero-buttons .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 15px;
    margin-top: 25px;
  }
  
  .hero-feature {
    font-size: 0.9rem;
  }
  
  .hero-banner {
    height: 200px;
  }
}

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

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-weight: 500;
}

.hero-feature-icon {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .hero-features {
    margin-top: 60px;
  }
}

/* === FAQ STYLES === */
.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(43, 80, 255, 0.1);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 15px 20px 20px;
  max-height: 200px;
  color: #6c757d;
  font-size: 0.9rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* === HERO BUTTONS === */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}



/* === FIXED CTA BUTTON === */
.fixed-cta-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: auto;
  min-width: 200px;
  height: 65px;
  background: var(--gradient);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 0 24px;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(115, 75, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.fixed-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(115, 75, 255, 0.4);
}

.cta-gift-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.cta-line1 {
  font-size: 14px;
  font-weight: 500;
}

.cta-line2 {
  font-size: 16px;
  font-weight: 700;
}

.cta-line2 strong {
  font-weight: 800;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(115, 75, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(115, 75, 255, 0.6), 0 0 0 10px rgba(115, 75, 255, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(115, 75, 255, 0.3);
  }
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: 24px;
  margin: 24px 0;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* === FEATURES === */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.feature-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 12px;
  color: white;
  font-weight: bold;
}

.feature-content h4 {
  margin-bottom: 8px;
  color: var(--text);
}

.feature-content p {
  color: var(--text-muted);
  margin: 0;
}

/* === RESPONSIVE === */
/* mobile first baseline already applied */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav {
    display: none;
  }
  
  .fixed-cta-btn {
    min-width: 160px;
    height: 55px;
    font-size: 14px;
    padding: 0 16px;
    gap: 8px;
  }
  
  .cta-gift-icon {
    width: 18px;
    height: 18px;
  }
  
  .cta-line1 {
    font-size: 12px;
  }
  
  .cta-line2 {
    font-size: 14px;
  }
  
  .faq-answer.active {
    font-size: 0.8rem;
    max-height: 300px;
    padding: 12px 16px 16px;
    line-height: 1.4;
  }
}

@media (min-width: 600px) {
  .btn {
    padding: 14px 28px;
    font-size: 1.05rem;
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (min-width: 900px) {
  .container {
    padding: 0 24px;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .hamburger {
    display: none;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  p { font-size: 1rem; }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* === ACCESSIBILITY STYLES === */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #734bff;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

/* Improved focus indicators */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #734bff;
  outline-offset: 2px;
}

.btn:focus {
  outline-color: #ffffff;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 1px solid #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === ENTER PAGE STYLES === */
.promo-highlight {
  background: linear-gradient(135deg, #734bff 0%, #9b59b6 100%);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  text-align: center;
  color: white;
}

.promo-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.promo-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.promo-value {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.promo-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.security-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-content h4 {
  color: #856404;
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.warning-content p {
  color: #856404;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .promo-code {
    gap: 16px;
  }
  
  .promo-label {
    font-size: 1.2rem;
  }
  
  .promo-value {
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

/* === FOOTER LEGAL STYLES === */
.footer-legal {
  margin: 24px 0 16px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reviews Section */
.reviews {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.review-card {
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.review-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.review-rating {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-logo-section {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-logo-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.age-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.age-warning strong {
  color: #ffc107;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.age-warning p {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

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

.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #734bff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-legal {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: center;
  }
  
  .age-warning {
    text-align: left;
    margin-bottom: 0;
  }
  
  .legal-links {
    justify-content: flex-end;
    margin-bottom: 0;
  }
}

/* === EXTRA SMALL SCREENS === */
@media (max-width: 480px) {
  .faq-answer.active {
    font-size: 0.75rem;
    max-height: 350px;
    padding: 10px 14px 14px;
    line-height: 1.3;
  }
  
  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }
}