/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0f2a44, #081521 70%);
  color: #ffffff;
  line-height: 1.6;
}

/* Prevent oversized images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 800px;
  margin: auto;
}

.center-text {
  text-align: center;
}

/* ================= HEADER ================= */
.site-header {
  background: linear-gradient(to right, #0b1c2d, #0f2a44);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-logo {
  height: 48px;
  width: auto;
}

/* ================= NAVIGATION ================= */
.nav-links a {
  margin: 0 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffc107;
}

.btn-primary {
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* ================= VIDEO HERO ================= */
.video-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.video-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 30px;
}

.highlight-section {
  background: linear-gradient(180deg, #0c2236, #081521);
  padding: 80px 0;
}

/* ================= GALLERY FIX ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* ================= STATS BAR ================= */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.stat h2 {
  font-size: 2.5rem;
  color: #ffc107;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #081521;
  padding: 25px 0;
  text-align: center;
  margin-top: 60px;
  color: #ccc;
}
/* ===== FIX LOGO SIZE EVERYWHERE ===== */
.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-header img {
  max-height: 50px;
}

/* Prevent any image from stretching header */
.site-header img.logo {
  flex-shrink: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.full-image {
  width: 100%;
  border-radius: 18px;
  margin-top: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
/* ================= PAGE HERO (Draft Header) ================= */
.page-hero {
  padding: 80px 20px 50px;
  text-align: center;
  background: linear-gradient(180deg, #0b1c2d, #081521);
}

.page-hero h1 {
  font-size: 2.6rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-hero p {
  color: #ccc;
  font-size: 1.1rem;
}

/* ================= PLAYER GRIDS ================= */
.player-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.player-grid.large-cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
}
.player-grid.large-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* ================= PLAYER CARD STYLE ================= */
.player-card {
  background: linear-gradient(145deg, #0f2a44, #081521);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.5);
}

/* ================= COMING SOON BANNER ================= */
.coming-soon-banner {
  margin-top: 60px;
  padding: 18px 25px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  display: inline-block;
  animation: glowPulse 2s infinite ease-in-out;
}

.coming-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(255,193,7,0.6); }
  50% { box-shadow: 0 0 25px rgba(255,193,7,1); }
  100% { box-shadow: 0 0 10px rgba(255,193,7,0.6); }
}
/* Moving banner */
.countdown-banner {
  background: #ffcc00;
  color: #0b1c2d;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 18s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Center helpers */
.center {
  text-align: center;
}

.selection-img {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-top: 20px;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.register-card {
  background: rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.register-card:hover {
  transform: translateY(-8px);
}

.more-news {
  margin-top: 60px;
  padding: 35px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,204,0,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 14px;
}

.more-news h3 {
  color: #ffcc00;
  margin-bottom: 12px;
}

.more-news p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
/* NEWS PAGE */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card img {
  width: 100%;
  height: auto;
  display: block;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.news-content p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}
/* Selection Process Clickable Card */
.news-link-card {
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
}

.news-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.news-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Center single poster nicely */
.news-grid {
  justify-content: center;
}

.news-card {
  max-width: 520px;
}
/* Glow pulse behind selection poster */
.news-link-card {
  position: relative;
  overflow: hidden;
}

.news-link-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(255,193,7,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.news-link-card:hover::before {
  opacity: 1;
}

/* Keep content above glow */
.news-link-card img,
.news-link-card .news-content {
  position: relative;
  z-index: 1;
}

/* Animated CTA arrow */
.news-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.news-link-card:hover .news-cta {
  transform: translateX(6px);
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b1c2d, #132f4c);
  color: white;
}

.stat h2 {
  font-size: 42px;
  color: #ffc107;
  margin-bottom: 6px;
  text-shadow: 0 0 12px rgba(255,193,7,0.6);
}

.stat p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
}
/* Center Selection Process Section */
.selection-section {
  text-align: center;
  padding: 60px 20px;
}

.selection-section .news-card {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

/* Make sure badge stays positioned correctly */
.news-card {
  position: relative;
}
/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #081a2c, #06121f);
  padding: 40px 20px;
  color: #d1d5db;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

.footer-center h4 {
  margin-bottom: 10px;
  color: #facc15;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f2a44;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  color: white;
}

.social-icons a:hover {
  background: #facc15;
  transform: translateY(-4px);
}

.social-icons a:hover svg {
  color: #081a2c;
}

.footer-right p {
  margin: 5px 0;
  font-size: 14px;
}
/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #facc15;
  color: #0b1c2d;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-5px);
  background: #ffb703;
}
/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #ffb400, #ff8c00);
  color: #000;
  border: none;
  padding: 12px 15px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255,180,0,0.6);
}
/* Pay Now Attention Arrow */
.pay-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.click-arrow {
  font-weight: 700;
  color: #ffd700;
  font-size: 18px;
  animation: bounceArrow 1s infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes bounceArrow {
  0% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(-10px); }
}
/* Glowing Pay Button Effect */
.pay-button-glow {
  padding: 10px 18px;
  border-radius: 12px;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,193,7,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(255,193,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
}
.secure-badge {
  margin-top: 8px;
  font-size: 14px;
  color: #b0c4de;
  opacity: 0.9;
}
.countdown-timer {
  background: linear-gradient(90deg,#ffb400,#ff7a00);
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255,180,0,0.6);
}
/* Premium Registration Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg,#ffc107,#ff9800);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,193,7,0.7);
}

/* Card icons styling */
.register-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Small note under buttons */
.register-card p + p {
  font-size: 13px;
  color: #b0c4de;
  margin-top: 8px;
}
/* Registration Cards Layout */
.register-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Individual Card Styling */
.register-card {
  background: linear-gradient(145deg, #0f2236, #132f4c);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle Shine Overlay */
.register-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08), transparent 60%);
  transform: rotate(25deg);
  transition: 0.6s;
}

/* Hover Effects */
.register-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.register-card:hover::before {
  left: 100%;
}

/* Titles inside cards */
.register-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #ffc107;
}

/* Description text */
.register-card p {
  font-size: 15px;
  color: #d6e2f0;
  margin-bottom: 18px;
}
/* Animated Background for Registration Section */
.section.register-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1c2d, #0e243a);
}

/* Moving Glow Layers */
.section.register-bg::before,
.section.register-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.15), transparent 70%);
  animation: moveGlow 12s linear infinite;
  z-index: 0;
}

.section.register-bg::after {
  background: radial-gradient(circle, rgba(0,191,255,0.12), transparent 70%);
  animation-delay: 6s;
}

@keyframes moveGlow {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(60%, 40%); }
  100% { transform: translate(-30%, -30%); }
}

/* Ensure content stays above glow */
.section.register-bg .container {
  position: relative;
  z-index: 1;
}
/* HIGH ENERGY SPORTS BACKGROUND */
.section.register-bg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #0a1a2b 0%, #081421 60%);
}

/* Moving Stadium Light Beams */
.section.register-bg::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.15),
      rgba(255,255,255,0.05));
  animation: stadiumLights 8s linear infinite;
  z-index: 0;
}

@keyframes stadiumLights {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Energy Glow Pulses */
.section.register-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.18), transparent 70%);
  animation: energyPulse 4s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes energyPulse {
  from { transform: translate(10%, 10%) scale(1); }
  to { transform: translate(40%, 20%) scale(1.2); }
}

/* Floating Cricket Ball Effect */
.section.register-bg .cricket-ball {
  position: absolute;
  width: 60px;
  opacity: 0.08;
  animation: floatBall 18s linear infinite;
  z-index: 0;
}

@keyframes floatBall {
  0% { transform: translate(-10%, 20%) rotate(0deg); }
  50% { transform: translate(110%, 40%) rotate(180deg); }
  100% { transform: translate(-10%, 20%) rotate(360deg); }
}

/* Keep content above effects */
.section.register-bg .container {
  position: relative;
  z-index: 2;
}
/* LIMITED SLOTS BADGE */
.slots-badge {
  position: absolute;
  top: 15px;
  right: -40px;
  background: linear-gradient(90deg, #ff0000, #ff5a00);
  color: white;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 50px;
  transform: rotate(35deg);
  box-shadow: 0 4px 15px rgba(255,0,0,0.6);
  letter-spacing: 1px;
  animation: pulseBadge 1.2s infinite alternate;
}

@keyframes pulseBadge {
  from { transform: rotate(35deg) scale(1); }
  to { transform: rotate(35deg) scale(1.08); }
}
.register-card {
  position: relative;
}
.video-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}
.gallery-grid video {
  width: 100%;
  border-radius: 12px;
}
.video-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 12px;
}

.poster-img {
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Poster Row Layout */
.poster-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

/* Make posters consistent */
.poster-row .news-card img {
  width: 100%;
  border-radius: 14px;
}
/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.news-card,
.player-card,
.register-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover,
.player-card:hover,
.register-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(255,193,7,0.45), transparent 70%);
  animation: pulseGlow 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 6px 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}
.player-card {
  position: relative;
  overflow: hidden;
}

.player-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(25deg);
  transition: 0.8s;
}

.player-card:hover::after {
  left: 120%;
}
.hero-overlay h1 {
  animation: fadeUp 1.2s ease forwards;
}

.hero-overlay p {
  animation: fadeUp 1.6s ease forwards;
}

.hero-overlay .btn-primary {
  animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
/* LIMITED SLOTS BADGE */
.slots-badge {
  position: absolute;
  top: 15px;
  right: -40px;
  background: linear-gradient(90deg, #ff0000, #ff5a00);
  color: white;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 50px;
  transform: rotate(35deg);
  box-shadow: 0 4px 15px rgba(255,0,0,0.6);
  letter-spacing: 1px;
  animation: pulseBadge 1.2s infinite alternate;
}

@keyframes pulseBadge {
  from { transform: rotate(35deg) scale(1); }
  to { transform: rotate(35deg) scale(1.08); }
}
.register-card {
  position: relative;
}
/* HIGH ENERGY SPORTS BACKGROUND */
.section.register-bg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #0a1a2b 0%, #081421 60%);
}

/* Moving Stadium Light Beams */
.section.register-bg::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.15),
      rgba(255,255,255,0.05));
  animation: stadiumLights 8s linear infinite;
  z-index: 0;
}

@keyframes stadiumLights {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Energy Glow Pulses */
.section.register-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.18), transparent 70%);
  animation: energyPulse 4s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes energyPulse {
  from { transform: translate(10%, 10%) scale(1); }
  to { transform: translate(40%, 20%) scale(1.2); }
}

/* Floating Cricket Ball Effect */
.section.register-bg .cricket-ball {
  position: absolute;
  width: 60px;
  opacity: 0.08;
  animation: floatBall 18s linear infinite;
  z-index: 0;
}

@keyframes floatBall {
  0% { transform: translate(-10%, 20%) rotate(0deg); }
  50% { transform: translate(110%, 40%) rotate(180deg); }
  100% { transform: translate(-10%, 20%) rotate(360deg); }
}

/* Keep content above effects */
.section.register-bg .container {
  position: relative;
  z-index: 2;
}
/* Animated Background for Registration Section */
.section.register-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1c2d, #0e243a);
}

/* Moving Glow Layers */
.section.register-bg::before,
.section.register-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.15), transparent 70%);
  animation: moveGlow 12s linear infinite;
  z-index: 0;
}

.section.register-bg::after {
  background: radial-gradient(circle, rgba(0,191,255,0.12), transparent 70%);
  animation-delay: 6s;
}

@keyframes moveGlow {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(60%, 40%); }
  100% { transform: translate(-30%, -30%); }
}

/* Ensure content stays above glow */
.section.register-bg .container {
  position: relative;
  z-index: 1;
}
/* Registration Cards Layout */
.register-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Individual Card Styling */
.register-card {
  background: linear-gradient(145deg, #0f2236, #132f4c);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle Shine Overlay */
.register-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08), transparent 60%);
  transform: rotate(25deg);
  transition: 0.6s;
}

/* Hover Effects */
.register-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.register-card:hover::before {
  left: 100%;
}

/* Titles inside cards */
.register-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #ffc107;
}

/* Description text */
.register-card p {
  font-size: 15px;
  color: #d6e2f0;
  margin-bottom: 18px;
}
/* Premium Registration Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg,#ffc107,#ff9800);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,193,7,0.7);
}

/* Card icons styling */
.register-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Small note under buttons */
.register-card p + p {
  font-size: 13px;
  color: #b0c4de;
  margin-top: 8px;
}
/* Glowing Pay Button Effect */
.pay-button-glow {
  padding: 10px 18px;
  border-radius: 12px;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,193,7,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(255,193,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
}
.secure-badge {
  margin-top: 8px;
  font-size: 14px;
  color: #b0c4de;
  opacity: 0.9;
}
.countdown-timer {
  background: linear-gradient(90deg,#ffb400,#ff7a00);
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255,180,0,0.6);
}
/* Premium Registration Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg,#ffc107,#ff9800);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,193,7,0.7);
}

/* Card icons styling */
.register-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Small note under buttons */
.register-card p + p {
  font-size: 13px;
  color: #b0c4de;
  margin-top: 8px;
}
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(255,193,7,0.45), transparent 70%);
  animation: pulseGlow 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 6px 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}
.player-card {
  position: relative;
  overflow: hidden;
}

.player-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(25deg);
  transition: 0.8s;
}

.player-card:hover::after {
  left: 120%;
}
.hero-overlay h1 {
  animation: fadeUp 1.2s ease forwards;
}

.hero-overlay p {
  animation: fadeUp 1.6s ease forwards;
}

.hero-overlay .btn-primary {
  animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Animated Background for Registration Section */
.section.register-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1c2d, #0e243a);
}

/* Moving Glow Layers */
.section.register-bg::before,
.section.register-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.15), transparent 70%);
  animation: moveGlow 12s linear infinite;
  z-index: 0;
}

.section.register-bg::after {
  background: radial-gradient(circle, rgba(0,191,255,0.12), transparent 70%);
  animation-delay: 6s;
}

@keyframes moveGlow {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(60%, 40%); }
  100% { transform: translate(-30%, -30%); }
}

/* Ensure content stays above glow */
.section.register-bg .container {
  position: relative;
  z-index: 1;
}
/* ===== RAZORPAY BUTTON FIX (STOP BLINKING) ===== */
.razorpay-payment-button,
form button,
form iframe {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Remove global hover glow from Razorpay */
.razorpay-payment-button:hover {
  box-shadow: none !important;
  transform: none !important;
}
/* ===== RAZORPAY PREMIUM BORDER STYLE ===== */
.payment-box form {
  display: inline-block;
  padding: 6px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.7);
}

/* Keep button normal inside */
.payment-box iframe,
.payment-box button {
  border-radius: 10px !important;
}
/* Prevent global button effects on embedded payment buttons */
form * {
  animation: none !important;
}
/* ===== STOP ALL ANIMATIONS ON RAZORPAY AREA ===== */
.payment-box,
.payment-box * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
/* ===== PREMIUM STATIC PAYMENT HIGHLIGHT ===== */
.payment-box form {
  display: inline-block;
  padding: 6px;
  border-radius: 14px;
  border: 2px solid #ffc107;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.6);
  background: rgba(255, 193, 7, 0.05);
}

/* Keep Razorpay button clean inside */
.payment-box iframe {
  border-radius: 10px !important;
}
/* Soft bounce for "Click Here" text */
.click-here {
  display: inline-block;
  color: #ffc107;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0;
  animation: softBounce 1.8s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(255,193,7,0.6);
}

@keyframes softBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* Ex-Ranji Players Grid */
.ranji-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ranji-grid {
    grid-template-columns: 1fr;
  }
}
/* Center wrapper */
.ranji-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Ranji grid */
.ranji-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .ranji-grid {
    grid-template-columns: 1fr;
  }
}
