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

:root {
  --dark-navy: #1a1a2e;
  --midnight: #16213e;
  --deep-blue: #0f3460;
  --cyan: #00d4ff;
  --purple: #7b68ee;
  --green: #00ff88;
  --white: #ffffff;
  --light-grey: #e8e8e8;
  --gold: #ffd700;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark-navy);
  min-height: 100vh;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.full-width {
  width: 100%;
}

.navbar {
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.brand-icon {
  font-size: 28px;
  color: var(--cyan);
}

.brand-text {
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--cyan);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

.nav-menu li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--cyan);
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.btn-primary.btn-glow {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  padding: 12px 30px;
  border: 2px solid var(--cyan);
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--cyan);
  color: var(--dark-navy);
}

.btn-link {
  background: none;
  border: none;
  color: var(--cyan);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 5px;
}

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

.link-text {
  color: var(--cyan);
  text-decoration: none;
}

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

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 52, 96, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  backdrop-filter: blur(10px);
}

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

.age-gate-content {
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  border: 2px solid rgba(0, 212, 255, 0.3);
  position: relative;
}

.age-gate-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.age-gate-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.age-gate-buttons button {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.age-gate-buttons .btn-primary {
  background: linear-gradient(135deg, var(--green), #00cc70);
}

.age-gate-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.age-gate-footer {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

#cookieBanner,
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 52, 96, 0.98);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 25px;
  z-index: 2500;
  box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.3);
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  display: none;
}

#cookieBanner.show,
.cookie-banner.show {
  display: block;
}

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

.cookie-content h3 {
  color: var(--cyan);
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

#cookieSettings.show,
.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: var(--cyan);
  margin-bottom: 30px;
  text-align: center;
}

.cookie-option {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

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

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

.cookie-label {
  flex: 1;
}

.cookie-label strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 5px;
}

.cookie-label small {
  display: block;
  opacity: 0.8;
  font-size: 0.9rem;
}

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

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

.hero {
  margin-top: 80px;
  background: linear-gradient(
    135deg,
    var(--midnight) 0%,
    var(--deep-blue) 100%
  );
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aurora-bg,
.aurora-bg-small {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(123, 104, 238, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 212, 255, 0.2) 0%,
      transparent 50%
    );
  animation: aurora 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }
  100% {
    opacity: 0.8;
    transform: translateY(-20px);
  }
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--light-grey);
}

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

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

.info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.1);
  padding: 12px 25px;
  border-radius: 25px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--cyan);
}

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

.countdown-section {
  padding: 60px 0;
  background: rgba(22, 33, 62, 0.3);
  text-align: center;
}

.countdown-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

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

.countdown-item {
  background: rgba(15, 52, 96, 0.5);
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  min-width: 100px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.countdown-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 0.95rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-grey);
  margin-top: 5px;
}

.countdown-divider {
  font-size: 3rem;
  font-weight: bold;
  color: var(--cyan);
  opacity: 0.5;
}

.countdown-info {
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: 0.8;
}

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

.games-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

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

.game-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
  border-color: var(--cyan);
}

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

.game-header h3 {
  font-size: 1.8rem;
  color: var(--cyan);
}

.game-badge {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.game-jackpot {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.jackpot-label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.jackpot-amount {
  font-size: 3rem;
  font-weight: bold;
}

.game-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-icon {
  color: var(--cyan);
  font-size: 1.3rem;
}

.features-section {
  padding: 80px 0;
  background: rgba(22, 33, 62, 0.3);
}

.features-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

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

.feature-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  border-color: var(--cyan);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

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

.feature-card p {
  color: var(--light-grey);
  line-height: 1.8;
  opacity: 0.9;
}

.how-to-play {
  padding: 80px 0;
  background: var(--dark-navy);
}

.how-to-play h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

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

.step-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.step-card h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--cyan);
}

.step-card p {
  color: var(--light-grey);
  line-height: 1.8;
  opacity: 0.9;
}

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

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-header {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ticket-section {
  padding: 60px 0;
  background: var(--dark-navy);
}

.game-selector {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.game-tab {
  background: rgba(22, 33, 62, 0.6);
  border: 2px solid rgba(0, 212, 255, 0.3);
  padding: 20px 40px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.game-tab:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
}

.game-tab.active {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.tab-title {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--cyan);
  margin-bottom: 5px;
}

.tab-price {
  display: block;
  font-size: 0.95rem;
  opacity: 0.8;
}

.game-content {
  display: none;
}

.game-content.active {
  display: block;
}

.game-info-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 30px;
}

.game-info-card h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.jackpot-display {
  text-align: center;
  padding: 30px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 15px;
  margin-bottom: 30px;
}

.game-rules p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.number-picker-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 30px;
}

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

.picker-header h3 {
  color: var(--cyan);
  font-size: 1.5rem;
}

.selected-numbers {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.selected-numbers span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.selected-number {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.empty-slot {
  background: rgba(15, 52, 96, 0.5);
  border: 2px dashed rgba(0, 212, 255, 0.3);
  color: rgba(255, 255, 255, 0.3);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.number-grid button {
  aspect-ratio: 1;
  border: 2px solid rgba(0, 212, 255, 0.3);
  background: rgba(22, 33, 62, 0.6);
  border-radius: 50%;
  font-weight: bold;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.number-grid button:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.number-grid button.selected {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.ticket-summary {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  max-width: 500px;
  margin: 0 auto;
}

.ticket-summary h3 {
  color: var(--cyan);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--light-grey);
}

.summary-row.total {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.summary-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.responsible-notice {
  padding: 60px 0;
  background: rgba(22, 33, 62, 0.3);
}

.notice-card {
  background: rgba(22, 33, 62, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.notice-card h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.notice-card p {
  margin-bottom: 20px;
  line-height: 1.8;
  opacity: 0.9;
}

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

.auth-card {
  background: rgba(22, 33, 62, 0.8);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.auth-subtitle {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  font-size: 1.05rem;
}

.auth-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-grey);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  background: rgba(15, 52, 96, 0.5);
  color: var(--white);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

.checkbox-label span {
  font-size: 0.95rem;
  color: var(--light-grey);
}

.checkbox-label a {
  color: var(--cyan);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.checkbox-group {
  margin-bottom: 20px;
}

.auth-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(0, 212, 255, 0.3);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.auth-divider span {
  background: rgba(22, 33, 62, 0.8);
  padding: 0 15px;
  position: relative;
  opacity: 0.7;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.policy-section {
  padding: 100px 0;
  background: var(--dark-navy);
  min-height: calc(100vh - 80px);
}

.policy-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.policy-updated,
.policy-subtitle {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  font-size: 1.05rem;
}

.policy-content {
  background: rgba(22, 33, 62, 0.6);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.2);
}

.policy-content h2 {
  color: var(--cyan);
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--light-grey);
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.policy-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--light-grey);
  opacity: 0.9;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 25px;
  padding-left: 35px;
}

.policy-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--light-grey);
  opacity: 0.9;
}

.policy-content a {
  color: var(--cyan);
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content strong {
  color: var(--cyan);
}

.policy-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  text-align: center;
}

.policy-footer h3 {
  color: var(--cyan);
  margin-bottom: 15px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(15, 52, 96, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.cookie-table thead {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.cookie-table th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
}

.cookie-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.cookie-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

.cookie-consent-box {
  background: rgba(0, 212, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  text-align: center;
  margin: 40px 0;
}

.cookie-consent-box h3 {
  color: var(--cyan);
  margin-bottom: 15px;
}

.cookie-consent-box p {
  margin-bottom: 20px;
}

.alert-box {
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border: 2px solid;
}

.alert-box.warning {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
}

.alert-box.info {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
}

.alert-box h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.alert-box.warning h3 {
  color: var(--gold);
}

.alert-box.info h3 {
  color: var(--cyan);
}

.alert-box p {
  margin-bottom: 10px;
}

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

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

.resource-card {
  background: rgba(0, 212, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.resource-card h3 {
  color: var(--cyan);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.resource-card p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.resource-card a {
  color: var(--cyan);
  word-break: break-all;
}

@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 33, 62, 0.98);
    flex-direction: column;
    padding: 20px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .number-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 20px;
  }

  .countdown-divider {
    font-size: 2rem;
  }

  .games-section h2,
  .features-section h2,
  .how-to-play h2,
  .countdown-section h2 {
    font-size: 2rem;
  }

  .jackpot-amount {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .auth-card {
    padding: 30px;
  }

  .policy-content {
    padding: 30px;
  }

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

  .brand-text {
    font-size: 18px;
  }

  .number-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .policy-section h1 {
    font-size: 2.5rem;
  }

  .policy-content h2 {
    font-size: 1.6rem;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

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

  .countdown-divider {
    font-size: 1.8rem;
  }

  .jackpot-amount {
    font-size: 2rem;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .age-gate-buttons button {
    width: 100%;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .number-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .number-grid button {
    font-size: 0.9rem;
  }

  .game-selector {
    flex-direction: column;
  }

  .game-tab {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .auth-card h1 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .policy-section h1 {
    font-size: 2rem;
  }
}

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

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