body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #1b2036ff;
  color: #e5e7eb;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO */
.navbar h1 {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 2.3rem;
  color: #fff;
  font-weight: 700;
}

/* MENU */
#navMenu {
  list-style: none;
  display: flex;
  gap: 26px;
}

#navMenu li a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5f5;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
#navMenu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transition: width 0.3s ease;
}

#navMenu li a:hover {
  color: #fff;
}

#navMenu li a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #navMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #020617;
    flex-direction: column;
    gap: 0;
    display: none;
    animation: slideDown 0.35s ease;
  }

  #navMenu.show {
    display: flex;
  }

  #navMenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  #navMenu li a {
    padding: 14px 20px;
    display: block;
    font-size: 0.9rem;
  }
}

/* ================= ANIMATION ================= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero {
  position: relative;
  height: 85vh;
  color: #fff;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.5)
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content .tagline {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e5e7eb;
}

.hero-points {
  list-style: none;
  margin-bottom: 25px;
}

.hero-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #16a34a;
  color: #fff;
}

.btn.primary:hover {
  background: #15803d;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* QUICK CATEGORIES */
.quick-categories {
  display: flex;
  gap: 15px;
  padding: 25px 20px;
  overflow-x: auto;
  background: #0f172a;
}

.category-card {
  flex: 0 0 auto;
  background: #1e293b;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.category-card:hover {
  background: #16a34a;
}

.category-card.live {
  background: #dc2626;
}
/* ============================= */
/* QUICK CATEGORIES – MOBILE */
/* ============================= */
@media (max-width: 768px) {
  .quick-categories {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #020617;
  }

  .quick-categories::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 9px 14px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .category-card.live {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    border: none;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 420px) {
  .category-card {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
}

/* UPCOMING MATCHES */
.upcoming-section {
  padding: 60px 20px;
  background: #020617;
  color: #fff;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.upcoming-match-card {
  background: #0f172a;
  border-radius: 18px;
  padding: 20px;
  position: relative;
  transition: 0.3s;
}

.upcoming-match-card:hover {
  transform: translateY(-6px);
}

/* BADGE */
.upcoming-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #2563eb;
}

/* TEAMS */
.teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.team {
  text-align: center;
}

.team img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.team p {
  margin-top: 6px;
  font-size: 0.85rem;
}

.vs {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* INFO */
.match-info {
  text-align: center;
  margin: 15px 0;
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* ACTIONS */
.match-actions {
  display: flex;
  gap: 10px;
}

.btn.odds {
  background: #16a34a;
  color: #fff;
}

.btn.notify {
  background: #1e293b;
  color: #fff;
}
/* UPCOMING MATCHES – MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .upcoming-section {
    padding: 50px 16px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .upcoming-match-card {
    padding: 16px;
    border-radius: 16px;
  }

  /* BADGE */
  .upcoming-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  /* TEAMS */
  .teams {
    margin-top: 28px;
  }

  .team img {
    width: 42px;
    height: 42px;
  }

  .team p {
    font-size: 0.75rem;
  }

  .vs {
    font-size: 0.7rem;
  }

  /* INFO */
  .match-info {
    font-size: 0.75rem;
    margin: 12px 0;
  }

  /* ACTION BUTTONS */
  .match-actions {
    gap: 8px;
  }

  .match-actions .btn {
    padding: 8px;
    font-size: 0.75rem;
    border-radius: 8px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 420px) {
  .team img {
    width: 38px;
    height: 38px;
  }

  .match-info {
    font-size: 0.7rem;
  }

  .match-actions {
    flex-direction: column;
  }

  .match-actions .btn {
    width: 100%;
  }
}

/* LIVE MATCH SPOTLIGHT */
.live-match.creative {
  padding: 60px 20px;
  background: linear-gradient(180deg, #020617 0%, #020617 60%, #0f172a 100%);
  color: #fff;
}

.live-container {
  max-width: 460px;
  margin: auto;
}

/* HEADER */
.live-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.live-header h2 {
  font-size: 1.9rem;
}

.live-pulse {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* CARD */
.live-match .creative-card {
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.85);
  border-radius: 26px;
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 35px rgba(220, 38, 38, 0.35);
}

/* TEAMS */
.creative-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creative-team {
  text-align: center;
  width: 40%;
}

.creative-team img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.creative-team span {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
}

.creative-team strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
  color: #fca5a5;
}

.creative-vs {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* INFO */
.live-info {
  text-align: center;
  margin: 18px 0 22px;
  font-size: 0.9rem;
  color: #fecaca;
}

/* ACTIONS */
.creative-actions {
  display: flex;
  gap: 12px;
}

.creative-btn {
  flex: 1;
  padding: 13px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.creative-btn.primary {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
}

.creative-btn.outline {
  background: transparent;
  border: 1px solid #fca5a5;
  color: #fca5a5;
}

/* LIVE MATCH (CREATIVE) – MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .live-match.creative {
    padding: 60px 16px;
  }

  .live-container {
    max-width: 100%;
  }

  .live-header h2 {
    font-size: 1.6rem;
  }

  /* CARD */
  .live-match .creative-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  /* TEAMS */
  .creative-teams {
    margin-top: 10px;
  }

  .creative-team {
    width: 45%;
  }

  .creative-team img {
    width: 55px;
    height: 55px;
  }

  .creative-team span {
    font-size: 0.8rem;
  }

  .creative-team strong {
    font-size: 0.9rem;
  }

  .creative-vs {
    font-size: 0.75rem;
  }

  /* INFO */
  .live-info {
    font-size: 0.8rem;
    margin: 14px 0 18px;
  }

  /* ACTIONS */
  .creative-actions {
    flex-direction: column;
    gap: 10px;
  }

  .creative-btn {
    padding: 11px;
    font-size: 0.85rem;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 420px) {
  .creative-team img {
    width: 48px;
    height: 48px;
  }

  .creative-team span {
    font-size: 0.75rem;
  }

  .creative-team strong {
    font-size: 0.85rem;
  }

  .creative-btn {
    font-size: 0.8rem;
  }
}

/* WHY GUJARAT11 – FULL WIDTH (NO BOX) */
.why-gujarat11.fullwidth {
  padding: 90px 20px;
  background: linear-gradient(180deg, #020617 0%, #020617 70%, #020617 100%);
  color: #fff;
}

/* INNER CONTAINER */
.why-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-header p {
  font-size: 1rem;
  color: #94a3b8;
}

/* ROW */
.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ITEM */
.why-item {
  text-align: center;
}

.why-item i {
  font-size: 30px;
  color: #22c55e;
  margin-bottom: 18px;
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 900px) {
  .why-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* WHY GUJARAT11 – MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .why-gujarat11.fullwidth {
    padding: 60px 16px;
  }

  .why-header h2 {
    font-size: 1.6rem;
  }

  .why-header p {
    font-size: 0.85rem;
  }

  .why-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-item {
    text-align: center;
  }

  .why-item i {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .why-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .why-item p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 420px) {
  .why-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-item i {
    font-size: 20px;
  }

  .why-item h4 {
    font-size: 0.9rem;
  }

  .why-item p {
    font-size: 0.72rem;
  }
}

/* STATS – CREATIVE BOX DESIGN */
.stats-section.creative-box {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #020617, #020617);
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* BOX */
.stat-box {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover::before {
  opacity: 1;
}

/* ICON */
.stat-box i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 15px;
}

/* NUMBER */
.stat-box h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.stat-box h3 span {
  font-size: 1.3rem;
  color: #22c55e;
}

/* TEXT */
.stat-box p {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #cbd5f5;
}

/* HOVER */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.35);
}

/* TABLET */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE OPTIMIZATION – STATS BOX */
@media (max-width: 480px) {
  .stats-section.creative-box {
    padding: 50px 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-box {
    padding: 22px 12px;
    border-radius: 16px;
  }

  .stat-box i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .stat-box h3 {
    font-size: 1.7rem;
    line-height: 1;
  }

  .stat-box h3 span {
    font-size: 0.9rem;
  }

  .stat-box p {
    margin-top: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}

/* NEWS SECTION */
.creative-news {
  padding: 70px 20px;
  background: radial-gradient(circle at top, #020617, #020617);
  color: #fff;
}

/* HEADER */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.news-header h2 {
  font-size: 1.8rem;
}

.news-view {
  font-size: 0.9rem;
  color: #22c55e;
  text-decoration: none;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.news-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
}

/* BADGES */
.news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.news-badge.hot {
  background: #dc2626;
}

.news-badge.update {
  background: #2563eb;
}

.news-badge.money {
  background: #16a34a;
}

/* CONTENT */
.news-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.news-card p {
  font-size: 0.85rem;
  color: #cbd5f5;
  line-height: 1.6;
}

/* TIME */
.news-time {
  display: block;
  margin-top: 15px;
  font-size: 0.7rem;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 480px) {
  .news-header h2 {
    font-size: 1.5rem;
  }
}

/* PLAYERS GRID */
.players-section {
  padding: 60px 20px;
  background: #020617;
  color: #fff;
  text-align: center;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.player-card {
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.player-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.player-card h4 {
  padding: 10px;
}

.player-card:hover {
  transform: scale(1.05);
}

/* PLAYER SLIDESHOW */
.players-section {
  padding: 60px 20px;
  background: #020617;
  color: #fff;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  margin-top: 30px;
}

.players-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.players-slider::-webkit-scrollbar {
  display: none;
}

.player-card {
  min-width: 160px;
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.player-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.player-card h4 {
  padding: 10px;
  font-size: 0.95rem;
}

.player-card:hover {
  transform: scale(1.05);
}

/* ARROWS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.slide-btn.left {
  left: -10px;
}
.slide-btn.right {
  right: -10px;
}

@media (max-width: 768px) {
  .slide-btn {
    display: none;
  }
}
/* STAR PLAYER SLIDER */
.players-section {
  padding: 60px 20px;
  background: #020617;
  color: #fff;
  text-align: center;
}

.player-slider {
  position: relative;
  max-width: 100%;
  margin-top: 30px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.player-card {
  min-width: 220px;
  margin: 0 10px;
  background: #0f172a;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}

.player-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.player-card h4 {
  padding: 10px;
}

.player-card:hover {
  transform: scale(1.05);
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.nav.prev {
  left: 10px;
}
.nav.next {
  right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .player-card {
    min-width: 170px;
  }
}

.clone {
  pointer-events: none;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav.prev {
  left: 10px;
}
.nav.next {
  right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .player-card {
    min-width: 170px;
  }
}

/* ================= FOOTER ================= */
footer {
  background: radial-gradient(circle at top, #020617, #020617);
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  color: #cbd5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* FOOTER BOX */
.footer-box h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-box p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* LINKS */
.footer-box a {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-box a:hover {
  color: #22c55e;
}

/* SUBSCRIBE */
.footer-box input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  outline: none;
  margin-bottom: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 0.85rem;
}

.footer-box button {
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ================= TELEGRAM FLOAT ================= */
.telegram-float {
  position: fixed;
  right: 18px;
  bottom: 160px;
  background: #0088cc;
  color: #fff;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 0 0 rgba(0, 136, 204, 0.6);
  animation: telegramPulse 1.8s infinite;
}

@keyframes telegramPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 136, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
  }
}

/* ================= MOBILE STICKY FOOTER ================= */
.mobile-sticky-footer {
  display: none;
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 120px;
  }

  .mobile-sticky-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-around;
    padding: 10px 0;
    z-index: 999;
  }

  .mobile-sticky-footer a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.7rem;
    text-align: center;
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-sticky-footer i {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .mobile-sticky-footer a:hover {
    color: #22c55e;
    transform: translateY(-2px);
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 420px) {
  .footer-box p,
  .footer-box a {
    font-size: 0.8rem;
  }

  .mobile-sticky-footer span {
    font-size: 0.65rem;
  }
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 100px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  color: #fff;
}

.page-header p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 8px;
}

/* ================= ABOUT ================= */
.about-content {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cbd5f5;
}

/* ================= MISSION ================= */
.mission {
  padding: 60px 20px;
  text-align: center;
}

.mission h2 {
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 12px;
}

.mission p {
  max-width: 800px;
  margin: auto;
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
}

/* ================= TRUST POINTS ================= */
.trust-points {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.trust-item {
  background: #0f172a;
  padding: 22px;
  text-align: center;
  border-radius: 14px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= OFFERINGS ================= */
.offerings {
  padding: 60px 20px;
  text-align: center;
}

.offerings h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.offerings ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.offerings li {
  padding: 12px 0;
  font-size: 0.9rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= SUPPORT ================= */
.support {
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.6),
    rgba(2, 6, 23, 0.9)
  );
  text-align: center;
}

.support h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #fff;
}

.support p {
  font-size: 0.9rem;
  color: #94a3b8;
  letter-spacing: 1px;
}

/* ================= RESPONSIBLE GAMING ================= */
.responsible-gaming {
  padding: 60px 20px;
  text-align: center;
  background: rgba(220, 38, 38, 0.08);
}

.responsible-gaming h2 {
  color: #fca5a5;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.responsible-gaming p {
  max-width: 800px;
  margin: auto;
  font-size: 0.85rem;
  color: #fecaca;
  line-height: 1.6;
}

/* ================= DISCLAIMER ================= */
.rules {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rules p {
  font-size: 0.8rem;
  color: #fca5a5;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.9rem;
  }

  .about-content p,
  .mission p {
    font-size: 0.9rem;
  }

  .mission h2,
  .offerings h2,
  .support h2 {
    font-size: 1.5rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .responsible-gaming p {
    font-size: 0.8rem;
  }
}

/* ================= PAGE HEADER ================= */
.page-header {
  text-align: center;
  padding: 100px 20px 60px;
}

.page-header h1 {
  font-size: 2.4rem;
  color: #fff;
}

.page-header p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ================= FILTERS ================= */
.match-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
}

.match-filters button {
  background: #0f172a;
  border: none;
  color: #cbd5f5;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
}

.match-filters .active {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
}

/* ================= MATCH SECTIONS ================= */
.match-section {
  padding: 60px 20px;
}

.match-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* ================= MATCH GRID ================= */
.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* ================= MATCH CARD ================= */
.match-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 18px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.match-card.live {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.25);
}

/* BADGES */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge.live {
  background: #dc2626;
}

.badge.upcoming {
  background: #2563eb;
}

/* CARD CONTENT */
.match-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

.match-card p {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ACTIONS */
.match-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.match-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}

.match-actions .outline {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

/* ================= POPULAR LEAGUES ================= */
.popular-leagues {
  padding: 60px 20px;
  text-align: center;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.league-card {
  background: #020617;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= WHY BET ================= */
.why-bet {
  padding: 60px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.why-grid div {
  background: #0f172a;
  padding: 20px;
  border-radius: 14px;
  font-size: 0.85rem;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.9rem;
  }

  .match-actions {
    flex-direction: column;
  }

  .match-actions button {
    font-size: 0.8rem;
  }
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 100px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  color: #fff;
}

.page-header p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 8px;
}

/* ================= STEPS ================= */
.steps-section {
  padding: 60px 20px;
  text-align: center;
}

.steps-section h2 {
  font-size: 1.9rem;
  margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}

.step-card span {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #22c55e;
  color: #020617;
  font-weight: 700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h4 {
  margin-bottom: 10px;
}

/* ================= BET TYPES ================= */
.bet-types {
  padding: 60px 20px;
  text-align: center;
}

.bet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.bet-card {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
}

/* ================= WALLET ================= */
.wallet-section {
  padding: 60px 20px;
  text-align: center;
}

.wallet-section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.wallet-section li {
  padding: 10px 0;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= SAFETY ================= */
.safety-section {
  padding: 60px 20px;
  text-align: center;
}

/* ================= RESPONSIBLE ================= */
.responsible-section {
  padding: 60px 20px;
  background: rgba(220, 38, 38, 0.08);
  text-align: center;
}

.responsible-section h2 {
  color: #fca5a5;
}

/* ================= FAQ ================= */
.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #0f172a;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.9rem;
  }

  .steps-section h2 {
    font-size: 1.5rem;
  }
}

/* ================= PAGE HEADER ================= */
.page-header {
  text-align: center;
  padding: 100px 20px 60px;
}

.page-header h1 {
  font-size: 2.4rem;
  color: #fff;
}

.page-header p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ================= FEATURED LEAGUES ================= */
.featured-leagues {
  padding: 60px 20px;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.featured-card {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #020617;
  padding: 30px;
  border-radius: 18px;
  font-weight: 600;
}

/* ================= LEAGUE SECTIONS ================= */
.league-section {
  padding: 60px 20px;
}

.league-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.league-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.league-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
}

/* ================= TOURNAMENTS ================= */
.tournaments {
  padding: 60px 20px;
  text-align: center;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.tournament-card {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 16px;
}

/* ================= WHY LEAGUES ================= */
.why-leagues {
  padding: 60px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.why-grid div {
  background: #0f172a;
  padding: 20px;
  border-radius: 14px;
  font-size: 0.85rem;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.9rem;
  }

  .league-card,
  .tournament-card,
  .featured-card {
    font-size: 0.85rem;
  }
}
