body {
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* 🔥 Section background with masked guard image */
.section-bg {
  background-image: url('masked-guard.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

/* ✅ Container */
.landing-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* 🎮 Redesigned Hero Section */
.hero-section.fun-theme {
  position: relative;
  background: linear-gradient(135deg, #ffeb3b 0%, #f44336 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-guard {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  margin-bottom: 20px;
  animation: floatUp 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fun-title {
  font-size: 2.5em;
  color: #fff;
  font-family: 'Bangers', cursive;
  text-shadow: 2px 2px #000;
  margin: 10px 0;
}

.subheading {
  font-size: 1.4em;
  color: #fffde7;
  margin-bottom: 15px;
  font-weight: 600;
}

.tagline {
  font-size: 1.1em;
  color: #000;
  font-weight: bold;
  margin-bottom: 25px;
  font-style: italic;
}

.countdown {
  font-size: 1.5em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Courier New', monospace;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 1px;
}

/* 🚀 Demo Game Button - Squid Game Style */
/* 🚀 Demo Game Button - Squid Game Style */
.demo-btn {
  background: linear-gradient(135deg, #ff3cac 0%, #784ba0 100%);
  color: white;
  padding: 14px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 60, 172, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.demo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 60, 172, 0.8);
}
.leader-btn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: white;
  padding: 14px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.leader-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.9);
}



/* Make it mobile-friendly */
@media (max-width: 600px) {
  .hero-section.fun-theme {
    padding: 40px 15px;
  }

  .fun-title {
    font-size: 2em;
  }

  .subheading {
    font-size: 1.2em;
  }

  .countdown {
    font-size: 1.2em;
  }

  .hero-guard {
    width: 100px;
    height: 100px;
  }
}

/* ✅ Section 2: Schedule (Responsive + Neon Style) */
.schedule-section {
  margin: 60px 0;
  padding: 30px 20px;
  background: linear-gradient(to right, #100f2c, #1a032a);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
  color: #ffffff;
  text-align: center;
}

.schedule-section h3 {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #ff0066;
}

.game-card {
  background-color: rgba(30, 30, 60, 0.85);
  border: 1px solid #ff0066;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(255, 0, 102, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: scale(1.03);
}

.icon {
  font-size: 2.4em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.game-info h4 {
  font-size: 1.3em;
  color: #ffffff;
}

.game-info .date {
  font-weight: bold;
  color: #00ffcc;
}

.note {
  margin-top: 20px;
  color: #00ffcc;
  font-style: italic;
  font-size: 0.95em;
}

/* ✅ Section 3: Prize (Responsive + Neon Style) */
.prize-section {
  margin-top: 60px;
  padding: 30px 20px;
  background: linear-gradient(to right, #1a032a, #100f2c);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
  color: #ffffff;
  text-align: center;
}

.prize-section h3 {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #ff0066;
}

.prize-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.prize-card {
  background-color: rgba(30, 30, 60, 0.85);
  border: 1px solid #ff0066;
  border-radius: 12px;
  padding: 20px;
  width: 160px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 0, 102, 0.3);
}

.prize-card:hover {
  transform: scale(1.05);
}

.emoji {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #ffcc00;
}

.prize-card h4 {
  font-size: 1.2em;
  color: #ffffff;
  margin: 5px 0;
}

.prize-card p {
  font-size: 1em;
  color: #00ffcc;
  margin: 0;
}

.entry-fee {
  margin-top: 30px;
  color: #ffcc00;
  font-size: 1.1em;
  font-weight: bold;
}

.bonus-line {
  margin-top: 10px;
  font-style: italic;
  color: #00ffcc;
  font-size: 0.95em;
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
  .game-card {
    padding: 15px;
  }

  .prize-card {
    width: 100%;
  }

  .schedule-section h3,
  .prize-section h3 {
    font-size: 1.5em;
  }

  .game-info h4,
  .prize-card h4 {
    font-size: 1.1em;
  }

  .emoji {
    font-size: 2em;
  }
}


.registration-section {
  margin-top: 60px;
  padding: 40px 25px;
  background: linear-gradient(135deg, #ffeb3b 0%, #f44336 100%);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(244, 67, 54, 0.4);
  text-align: center;
  color: #1a1a1a;
}

.registration-section h3 {
  font-size: 2em;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.entry-info {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 25px;
  font-weight: bold;
}

.instructions {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #f44336;
  margin: 0 auto 30px;
  max-width: 500px;
  text-align: left;
  color: #333;
}

.instructions p {
  color: #d32f2f;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.instructions ol {
  margin: 0;
  padding-left: 20px;
}

.instructions li {
  margin-bottom: 10px;
  font-size: 1em;
}

.upi-box {
  background-color: #fff9c4;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #f44336;
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
  max-width: 400px;
  margin: auto;
}

.upi-qr {
  max-width: 200px;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #f44336;
}

.upi-id {
  font-size: 1em;
  color: #000;
  margin-bottom: 20px;
}

.register-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d32f2f;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 0 10px #d32f2f;
  transition: background 0.3s ease, transform 0.2s ease;
}

.register-btn:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .registration-section h3 {
    font-size: 1.6em;
  }

  .instructions {
    padding: 15px;
  }

  .register-btn {
    width: 100%;
    padding: 14px 0;
  }

  .upi-box {
    padding: 20px;
  }
}


.footer-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1c1c1c 0%, #000000 100%);
  border-top: 2px solid #00ffc3;
  border-radius: 0 0 20px 20px;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0, 255, 200, 0.1);
}

.footer-tagline {
  font-size: 1em;
  color: #00ffc3;
  margin-bottom: 15px;
  font-style: italic;
  text-shadow: 0 0 8px #00ffc3;
}

.footer-contact {
  font-size: 1.05em;
  color: #eeeeee;
  line-height: 1.8;
}

.footer-contact a {
  color: #ff4081;
  text-decoration: none;
  font-weight: bold;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: #ff79a0;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-section {
    padding: 30px 15px;
  }

  .footer-contact {
    font-size: 0.95em;
  }

  .footer-tagline {
    font-size: 0.9em;
  }
}

