/* True North Wins - Bold Red & Yellow Theme */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@400;700&display=swap");

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

:root {
  --primary-red: #ff0000;
  --secondary-yellow: #ffeb3b;
  --orange-red: #ff5722;
  --white: #ffffff;
  --dark: #1a1a1a;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background: linear-gradient(135deg, #fff 0%, #ffe5e5 100%);
  color: var(--dark);
}

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

/* Header */
.header {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-yellow);
  color: var(--primary-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  font-family: "Bebas Neue";
}

.logo-name {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-family: "Bebas Neue";
  letter-spacing: 1px;
  padding: 8px 0;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-yellow);
  transform: translateY(-2px);
}

.btn-register {
  background: var(--secondary-yellow);
  color: var(--primary-red);
  padding: 8px 20px;
  border-radius: 5px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--primary-red);
  padding: 20px;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.mobile-link {
  color: white;
  text-decoration: none;
  padding: 12px;
  text-align: center;
  font-family: "Bebas Neue";
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  color: white;
  overflow: hidden;
}

.hero-stripes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255, 235, 59, 0.1) 50px,
    rgba(255, 235, 59, 0.1) 100px
  );
}

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

.hero-title {
  font-family: "Bebas Neue";
  font-size: 5rem;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: "Bebas Neue";
  letter-spacing: 2px;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--secondary-yellow);
  color: var(--primary-red);
  box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.btn-primary:hover {
  background: #ffd600;
  transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid var(--secondary-yellow);
}

.btn-secondary:hover {
  background: var(--secondary-yellow);
  color: var(--primary-red);
}

/* Countdown */
.countdown-section {
  padding: 60px 0;
  background: white;
}

.section-title {
  font-family: "Bebas Neue";
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-red);
  letter-spacing: 3px;
}

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

.countdown-item {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  padding: 30px;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
  border: 3px solid var(--secondary-yellow);
}

.countdown-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-yellow);
  font-family: "Bebas Neue";
}

.countdown-label {
  display: block;
  font-size: 1rem;
  color: white;
  letter-spacing: 2px;
  font-family: "Bebas Neue";
}

.countdown-info {
  text-align: center;
  color: var(--primary-red);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Bebas Neue";
}

/* Games */
.games-section {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.game-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--primary-red);
  position: relative;
}

.game-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-red);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 900;
  font-family: "Bebas Neue";
  letter-spacing: 2px;
}

.game-badge.star {
  background: var(--secondary-yellow);
  color: var(--primary-red);
}

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

.game-name {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.game-jackpot {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-red);
  text-align: center;
  margin-bottom: 20px;
  font-family: "Bebas Neue";
}

.game-description {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.game-details {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 5px solid var(--secondary-yellow);
}

.game-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 700;
  font-family: "Bebas Neue";
  letter-spacing: 1px;
}

.btn-game {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  color: white;
}

/* How to Play */
.how-to-play {
  padding: 80px 0;
  background: var(--primary-red);
  color: white;
}

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

.step {
  text-align: center;
  padding: 30px;
  background: rgba(255, 235, 59, 0.1);
  border-radius: 10px;
  border: 3px solid var(--secondary-yellow);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--secondary-yellow);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
  font-family: "Bebas Neue";
}

.step h3 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-yellow);
  letter-spacing: 2px;
}

/* Winners */
.winners-section {
  padding: 80px 0;
  background: white;
}

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

.winner-card {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-top: 5px solid var(--primary-red);
}

.winner-initial {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  font-family: "Bebas Neue";
}

.winner-location {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-weight: 700;
}

.winner-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-red);
  margin-bottom: 15px;
  font-family: "Bebas Neue";
}

/* Buy Section */
.buy-section {
  padding: 60px 0;
}

.page-title {
  font-family: "Bebas Neue";
  font-size: 4rem;
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.page-subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.step-title {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 2px;
}

.game-selection-step,
.number-selection-step,
.ticket-summary-step {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  border: 4px solid var(--primary-red);
}

.game-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-option {
  cursor: pointer;
}
.game-option input[type="radio"] {
  display: none;
}

.game-option-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border: 4px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.game-option input[type="radio"]:checked + .game-option-card {
  border-color: var(--secondary-yellow);
  background: #fffef0;
  box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3);
}

.game-option-card:hover {
  transform: translateY(-5px);
}

.game-option-card h3 {
  font-family: "Bebas Neue";
  font-size: 2rem;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.game-option-jackpot {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-red);
  text-align: center;
  margin-bottom: 10px;
  font-family: "Bebas Neue";
}

.game-option-price {
  text-align: center;
  font-weight: 700;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
}

/* Number Selection */
.selection-controls {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.btn-quick-pick {
  background: var(--secondary-yellow);
  color: var(--primary-red);
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-weight: 900;
  cursor: pointer;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.btn-quick-pick:hover {
  background: #ffd600;
  transform: scale(1.05);
}

.btn-clear {
  background: var(--primary-red);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-weight: 900;
  cursor: pointer;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.progress-bar {
  position: relative;
  height: 40px;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 30px 0;
  border: 3px solid var(--primary-red);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  width: 0%;
  transition: width 0.4s;
  border-radius: 10px;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.selected-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 60px;
  margin-bottom: 30px;
}

.selected-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  animation: popIn 0.3s;
  font-family: "Bebas Neue";
  border: 3px solid var(--secondary-yellow);
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

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

.number-ball {
  aspect-ratio: 1;
  background: white;
  border: 3px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Bebas Neue";
}

.number-ball:hover {
  transform: scale(1.15);
  border-color: var(--secondary-yellow);
  background: #fffef0;
}

.number-ball.selected {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  border-color: var(--secondary-yellow);
  color: white;
  animation: bounce 0.5s;
}

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

.number-ball.shake {
  animation: shake 0.5s;
}

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

/* Confetti */
#confettiContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: confettiFall 3s ease-out forwards;
}
@keyframes confettiFall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Ticket Summary */
.ticket-summary {
  max-width: 600px;
  margin: 0 auto;
}

.quantity-selector {
  margin-bottom: 30px;
  text-align: center;
}

.quantity-selector label {
  display: block;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.qty-btn {
  width: 60px;
  height: 60px;
  background: var(--secondary-yellow);
  color: var(--primary-red);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  font-family: "Bebas Neue";
}

.qty-btn:hover {
  background: #ffd600;
  transform: scale(1.1);
}

#quantity {
  width: 100px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  border: 3px solid var(--primary-red);
  border-radius: 10px;
  padding: 10px;
  font-family: "Bebas Neue";
}

.summary-details {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 700;
  font-family: "Bebas Neue";
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.summary-row.total {
  font-size: 1.8rem;
  color: var(--primary-red);
  margin-top: 15px;
  padding-top: 20px;
  border-top: 3px solid var(--primary-red);
}

.btn-checkout {
  width: 100%;
  padding: 20px;
  font-size: 1.5rem;
}

/* Auth Pages */
.auth-section {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
}

.auth-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-top: 5px solid var(--primary-red);
}

.auth-header h1 {
  font-family: "Bebas Neue";
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 2px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Bebas Neue";
  letter-spacing: 1px;
}
.form-group input,
.form-group select {
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-options {
  display: flex;
  justify-content: space-between;
}
.checkbox-label {
  display: flex;
  gap: 8px;
}
.btn-full {
  width: 100%;
  padding: 16px;
}

/* Policy Pages */
.policy-section {
  padding: 60px 0;
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.policy-content h1 {
  font-family: "Bebas Neue";
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.policy-content h2 {
  font-family: "Bebas Neue";
  font-size: 2rem;
  color: var(--primary-red);
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Age Gate */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-gate-content {
  background: white;
  padding: 50px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--secondary-yellow);
}

.age-gate-icon {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 25px;
  font-family: "Bebas Neue";
}

.age-gate-content h1 {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.age-gate-question {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
  margin: 30px 0 25px;
  font-family: "Bebas Neue";
}

.age-gate-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-yes,
.btn-no {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  font-family: "Bebas Neue";
  letter-spacing: 1px;
}

.btn-yes {
  background: var(--secondary-yellow);
  color: var(--primary-red);
}
.btn-yes:hover {
  background: #ffd600;
}
.btn-no {
  background: #f44336;
  color: white;
}
.btn-no:hover {
  background: #d32f2f;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--orange-red) 100%
  );
  color: white;
  padding: 25px;
  z-index: 9999;
  border-top: 3px solid var(--secondary-yellow);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cookie-text h3 {
  margin-bottom: 10px;
  font-family: "Bebas Neue";
  letter-spacing: 2px;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Bebas Neue";
}
.cookie-btn.accept {
  background: var(--secondary-yellow);
  color: var(--primary-red);
}
.cookie-btn.decline {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.cookie-btn.settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
}
.cookie-modal-content h2 {
  font-family: "Bebas Neue";
  color: var(--primary-red);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.cookie-option {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-title {
  font-family: "Bebas Neue";
  font-size: 2rem;
  color: var(--secondary-yellow);
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.footer-section h4 {
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  color: var(--secondary-yellow);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--secondary-yellow);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 968px) {
  .nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .countdown-item {
    min-width: 80px;
    padding: 20px;
  }
  .countdown-value {
    font-size: 2.5rem;
  }
  .number-grid {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }
}

.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;
}
