:root {
  --ocean-blue: #006994;
  --sky-blue: #0099cc;
  --turquoise: #00ced1;
  --alice-blue: #f0f8ff;
  --white: #ffffff;
  --dark-blue: #004466;
  --light-blue: #e6f7ff;
  --success: #00c853;
  --warning: #ff9800;
  --danger: #f44336;
  --text-dark: #333333;
  --text-light: #666666;
  --border: #dddddd;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--alice-blue);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  font-size: 48px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 205, 209, 0.4);
}

.age-icon::before {
  content: "19+";
}

.age-gate h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--ocean-blue);
}

.age-gate p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.age-buttons button {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 105, 148, 0.15);
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
  border-top: 3px solid var(--turquoise);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  color: var(--ocean-blue);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-text p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  justify-content: center;
  align-items: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h2 {
  color: var(--ocean-blue);
  margin-bottom: 20px;
  font-size: 24px;
}

.cookie-option {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-option strong {
  display: block;
  color: var(--ocean-blue);
  margin-bottom: 5px;
}

.cookie-option p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.5;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.cookie-modal-buttons button {
  flex: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 205, 209, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--ocean-blue);
  padding: 12px 30px;
  border: 2px solid var(--ocean-blue);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--ocean-blue);
  color: white;
}

.btn-tertiary {
  background: transparent;
  color: var(--ocean-blue);
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.btn-tertiary:hover {
  opacity: 0.8;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: var(--ocean-blue);
}

.btn-white {
  background: white;
  color: var(--ocean-blue);
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-text {
  background: none;
  border: none;
  color: var(--ocean-blue);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
}

.btn-text:hover {
  opacity: 0.7;
}

.btn-register {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white !important;
  padding: 10px 25px;
  border-radius: 25px;
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 105, 148, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 205, 209, 0.3);
}

.logo-icon::before {
  content: "🌊";
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean-blue);
  line-height: 1;
}

.logo-sub {
  font-size: 14px;
  color: var(--turquoise);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ocean-blue);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ocean-blue);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  background: linear-gradient(
    135deg,
    var(--ocean-blue) 0%,
    var(--turquoise) 100%
  );
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,20 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out;
  line-height: 1.5;
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.age-reminder {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 20px;
}

.page-hero {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 0;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

.countdown-section {
  background: white;
  padding: 60px 0;
  text-align: center;
}

.countdown-section-small {
  background: var(--light-blue);
  padding: 30px 0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: var(--ocean-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle,
.countdown-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.countdown-text {
  font-size: 18px;
  color: var(--ocean-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.countdown-small {
  gap: 15px;
}

.countdown-item {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 25px 35px;
  border-radius: 15px;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(0, 105, 148, 0.2);
  text-align: center;
}

.countdown-small .countdown-item {
  padding: 20px 25px;
  min-width: 90px;
}

.countdown-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.countdown-small .countdown-value {
  font-size: 36px;
}

.countdown-label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 42px;
  font-weight: 700;
  color: var(--ocean-blue);
  opacity: 0.5;
}

.games-section {
  padding: 80px 0;
  background: var(--light-blue);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.game-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 105, 148, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 205, 209, 0.3);
}

.game-card.featured {
  border: 3px solid var(--turquoise);
}

.game-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.game-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.game-icon-jackpot::before {
  content: "💎";
}

.game-icon-mini::before {
  content: "🌊";
}

.game-title {
  font-size: 28px;
  color: var(--ocean-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.game-prize {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.game-description {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 15px;
}

.game-stats {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.game-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.game-stat:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
}

.stat-value {
  font-weight: 600;
  color: var(--ocean-blue);
  font-size: 14px;
}

.how-to-play-section {
  padding: 80px 0;
  background: white;
}

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

.step-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 15px;
  background: var(--light-blue);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 105, 148, 0.15);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 205, 209, 0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  margin: 30px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.step-icon-register::before {
  content: "📝";
}

.step-icon-numbers::before {
  content: "🎲";
}

.step-icon-win::before {
  content: "🏆";
}

.step-title {
  font-size: 22px;
  color: var(--ocean-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.step-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.features-section {
  padding: 80px 0;
  background: var(--light-blue);
}

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

.feature-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 105, 148, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 105, 148, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon-secure::before {
  content: "🔒";
}

.feature-icon-licensed::before {
  content: "✓";
}

.feature-icon-instant::before {
  content: "⚡";
}

.feature-icon-support::before {
  content: "💬";
}

.feature-title {
  font-size: 20px;
  color: var(--ocean-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-disclaimer {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.9;
}

.number-selection-section {
  padding: 60px 0;
  background: white;
}

.selection-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.game-selection {
  background: var(--light-blue);
  padding: 30px;
  border-radius: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.game-selection h2 {
  color: var(--ocean-blue);
  margin-bottom: 25px;
  font-size: 24px;
}

.game-option {
  position: relative;
  margin-bottom: 20px;
}

.game-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.game-option-label {
  display: block;
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-option input:checked + .game-option-label {
  border-color: var(--turquoise);
  box-shadow: 0 5px 20px rgba(0, 205, 209, 0.3);
  transform: translateX(5px);
}

.game-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.game-option-header h3 {
  font-size: 20px;
  color: var(--ocean-blue);
}

.game-price {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.game-prize {
  font-size: 24px;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 8px;
}

.game-odds {
  font-size: 13px;
  color: var(--text-light);
}

.order-summary {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 105, 148, 0.1);
}

.summary-title {
  color: var(--ocean-blue);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 15px;
}

.summary-total {
  border-top: 2px solid var(--alice-blue);
  padding-top: 15px;
  margin-top: 5px;
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 18px;
}

.number-picker {
  background: var(--alice-blue);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--light-blue);
}

.picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.quick-pick-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-color: var(--turquoise);
  color: var(--ocean-blue);
}

.quick-pick-btn:hover {
  background: var(--turquoise);
  color: white;
}

.quick-pick-icon::before {
  content: "⚡";
  margin-right: 5px;
}

.selection-progress {
  margin-bottom: 30px;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ocean-blue);
}

.progress-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--turquoise), var(--ocean-blue));
  width: 0%;
  transition: width 0.3s ease;
}

.selected-numbers-display {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.selected-label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.selected-balls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.selected-ball,
.empty-ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.1);
}

.selected-ball {
  background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
  color: white;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.empty-ball {
  background: #f0f0f0;
  color: #ccc;
  border: 2px dashed #ddd;
}

@keyframes popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.clear-btn {
  display: block;
  margin: 15px auto 0;
  font-size: 13px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.number-btn {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid white;
  background: white;
  color: var(--ocean-blue);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.number-btn:hover {
  transform: translateY(-2px);
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.number-btn.selected {
  background: var(--ocean-blue);
  color: white;
  border-color: var(--ocean-blue);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 105, 148, 0.3);
}

.shake {
  animation: shake 0.5s;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.picker-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.picker-actions button {
  flex: 1;
}

.picker-helper {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
}

.auth-section {
  padding: 80px 0;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}

.auth-card {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 105, 148, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h1 {
  color: var(--ocean-blue);
  font-size: 32px;
  margin-bottom: 10px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.form-group input {
  padding: 15px;
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0, 206, 209, 0.1);
}

.form-group small {
  color: var(--text-light);
  font-size: 12px;
}

.form-group-checkbox {
  margin: 10px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ocean-blue);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.link-primary {
  color: var(--ocean-blue);
  text-decoration: none;
  font-weight: 600;
}

.link-primary:hover {
  text-decoration: underline;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--alice-blue);
}

.age-reminder-small {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.7;
}

.policy-section {
  padding: 80px 0;
  background: white;
}

.policy-title {
  font-size: 42px;
  color: var(--ocean-blue);
  margin-bottom: 10px;
}

.policy-updated {
  color: var(--text-light);
  margin-bottom: 50px;
  font-style: italic;
}

.policy-content h2 {
  color: var(--ocean-blue);
  font-size: 24px;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--alice-blue);
}

.policy-content h3 {
  color: var(--dark-blue);
  font-size: 20px;
  margin: 25px 0 15px;
}

.policy-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.policy-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.help-box {
  background: var(--alice-blue);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--light-blue);
}

.help-box h3 {
  margin-top: 0;
  color: var(--ocean-blue);
}

.help-phone a {
  font-size: 20px;
  font-weight: 700;
  color: var(--turquoise);
  text-decoration: none;
}

.footer {
  background: var(--dark-blue);
  color: white;
  padding: 80px 0 30px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--turquoise);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 15px;
  max-width: 300px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--turquoise);
  padding-left: 5px;
}

.age-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
}

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer-imgs img {
  padding: 12px;
  margin: 12px;
  height: 55px;
  background: white;
  border-radius: 10px;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .selection-layout {
    grid-template-columns: 1fr;
  }

  .game-selection {
    position: static;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 900;
  }

  .nav.active {
    transform: translateY(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-text {
    margin: 0 auto 20px;
  }

  .auth-card {
    padding: 30px 20px;
  }

  .picker-actions {
    flex-direction: column;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 70px;
    padding: 15px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .countdown-separator {
    font-size: 28px;
  }
}
