/* ---------- Design tokens ---------- */
:root {
  --bg: #080c14;
  --bg-2: #0b0f19;
  --card: #0f1626;
  --card-2: #131b2e;
  --card-3: #1a233a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --lime: #26a7df;
  --lime-strong: #b3f63b;
  --ticker: #26a7df;
  --cyan: #00f0ff;
  --text: #ffffff;
  --muted: #8b9bb4;
  --muted-2: #5c6b84;
  --radius: 16px;
  --font: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #BDDECD;
  color: #3d9673;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1 {
    text-align: center;
}
h1,
h2 {
  color: #164b0a;
}

section.hero img {
  border-radius: 15px;
}

div#content {
  border: 2px solid #3d9673;
  border-radius: 10px;
  padding: 20px 20px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

a.logo {
  width: 30%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0px;
}

.accent {
  color: #164b0a;
}

/* ---------- Keyframes ---------- */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: 0.55;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-14px) rotate(-6deg);
  }
}

@keyframes glowDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.15);
  }

  66% {
    transform: translate(-30px, 25px) scale(0.95);
  }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #3E9975;
}

.navbar.scrolled {
  background: #3d9673;
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  white-space: nowrap;

}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  position: relative;
  box-shadow: 0 0 18px rgba(200, 255, 84, 0.5);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--bg);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 28% 100%, 0 50%);
  /* simplified "A" cut — replaced below with a cleaner mark */
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 6px 7px 6px 5px;
  background: var(--bg);
  clip-path: polygon(50% 0, 100% 100%, 78% 100%, 50% 45%, 22% 100%, 0 100%);
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bg);
}

.logo span {
  color: var(--lime);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login-btn {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
}

.login-btn:hover {
  color: var(--lime);
}

.join-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a0f00;
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(200, 255, 84, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 255, 84, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 24, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 13px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.mobile-menu nav a:hover {
  color: var(--lime);
  padding-left: 10px;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.mobile-actions .btn {
  flex: 1;
  text-align: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  color: #0a0f00;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(200, 255, 84, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   HERO
   ========================================================================== */
section.hero {
  padding-top: 96px;
  padding-bottom: 20px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: glowDrift 14s ease-in-out infinite;
  pointer-events: none;
}

.glow-lime {
  width: 480px;
  height: 480px;
  left: -140px;
  bottom: -160px;
  background: rgba(150, 220, 40, 0.35);
}

.glow-cyan {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  background: rgba(0, 240, 255, 0.18);
  animation-delay: -6s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* Left column entrance animation */
.hero-left>* {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.32s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.46s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.6s;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
}

.live-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lime);
  animation: ping 1.6s ease-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 460px;
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0a0f00;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.av-1 {
  background: linear-gradient(135deg, #ffd166, #ff9f1c);
}

.av-2 {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

.av-3 {
  background: linear-gradient(135deg, #5f27cd, #341f97);
  color: #fff;
}

.av-4 {
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.av-5 {
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
}

.proof-text {
  font-size: 0.92rem;
  color: var(--muted);
}

.proof-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

/* ---------- Live match widget ---------- */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.match-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, rgba(26, 35, 58, 0.92), rgba(15, 22, 38, 0.95));
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(200, 255, 84, 0.05);
  animation: fadeUp 1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.match-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 84, 0.4);
  box-shadow: var(--shadow), 0 0 50px rgba(200, 255, 84, 0.12);
}

.match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.match-league {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}

.match-clock {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.crest {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.crest-rma {
  background: linear-gradient(145deg, #ffffff, #cfd8e8);
  color: #1c2b45;
}

.crest-liv {
  background: linear-gradient(145deg, #e0403f, #8f1d1d);
  color: #fff;
}

.score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 2.1rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.score i {
  font-style: normal;
  color: var(--muted-2);
  font-weight: 600;
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.odd-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.odd-btn {
  width: 100%;
  padding: 11px 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.odd-btn:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 255, 84, 0.08);
}

.markets-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.markets-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.markets-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 255, 84, 0.07);
}

.markets-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   LIVE TICKER
   ========================================================================== */
.ticker {
  position: relative;
  z-index: 5;
  background: #3e9975;
  overflow: hidden;
  padding: 15px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.t-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.t-item b {
  font-weight: 800;
}

.t-item em {
  font-style: normal;
  font-weight: 900;
  margin-left: 10px;
  padding: 3px 9px;
  border-radius: 6px;
  background: #fff;
  color: var(--ticker);
  font-size: 0.82rem;
}

.t-dot {
  margin: 0 26px;
  font-size: 0.8rem;
  color: #fff;
}

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section {
  padding: 60px 0;
  padding-top: 0;
}

section.section.categories {
  padding-top: 60px;
}

div#f-content {
  border-radius: 15px;
  border: 2px solid #3d9673;
  padding: 20px;
}

.section-head {
  margin-bottom: 44px;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

a.login-btn {
  background: linear-gradient(45deg, #3eb4c3, #fbf06c);
  padding: 10px 18px;
  border-radius: 30px;
}

.section-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.view-all svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.view-all:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.view-all:hover svg {
  transform: translateX(4px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  border: 1px solid var(--line-2);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.95);
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.cat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.1) 30%, rgba(8, 12, 20, 0.92) 100%);
  transition: background 0.4s ease;
}

.cat-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
}

.cat-label {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.cat-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

.cat-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.55);
  border: 1px solid var(--line-2);
  color: var(--text);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, color 0.3s ease;
  z-index: 2;
}

.cat-arrow svg {
  width: 18px;
  height: 18px;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 255, 84, 0.55);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 255, 84, 0.1);
}

.cat-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.92) saturate(1.05);
}

.cat-card:hover .cat-shade {
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.05) 35%, rgba(8, 12, 20, 0.88) 100%);
}

.cat-card:hover .cat-sub {
  color: var(--lime);
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--lime);
  color: #0a0f00;
  border-color: var(--lime);
}

/* ==========================================================================
   FEATURED MATCHES
   ========================================================================== */
.matches-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.m-row {
  display: grid;
  grid-template-columns: 110px 1fr auto 110px;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.m-row:last-child {
  border-bottom: 0;
}

.m-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.m-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.m-time svg {
  width: 17px;
  height: 17px;
  color: var(--lime);
  flex-shrink: 0;
}

.m-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.m-teams {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-teams i {
  font-style: normal;
  font-weight: 500;
  color: var(--muted-2);
  text-transform: none;
  margin: 0 6px;
  font-size: 0.85rem;
}

.m-league {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.m-odds {
  display: flex;
  align-items: center;
  gap: 8px;
}

.o-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

.o-btn {
  min-width: 56px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.o-btn:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 255, 84, 0.08);
}

.o-btn--dash {
  color: var(--muted-2);
}

.o-btn--dash:hover {
  color: var(--muted-2);
  border-color: var(--line);
  background: rgba(8, 12, 20, 0.8);
  transform: none;
}

.bet-btn {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--lime);
  text-align: center;
  padding: 11px 0;
  border: 1px solid rgba(200, 255, 84, 0.55);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bet-btn:hover {
  background: var(--lime);
  color: #0a0f00;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(200, 255, 84, 0.3);
}

/* ==========================================================================
   MOBILE BANNER
   ========================================================================== */
.banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(120deg, #0c1322 0%, #0f1728 55%, #101d2c 100%);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 60px 64px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -140px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(150, 220, 40, 0.28), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite;
}

/* Phone */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  width: 248px;
  height: 505px;
  border-radius: 40px;
  background: linear-gradient(160deg, #232e47, #141c30);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), inset 0 0 0 6px #0b1120;
  padding: 10px;
  position: relative;
  transform: rotate(-6deg);
  animation: floaty 6s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  border-radius: 999px;
  background: #0b1120;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #0b0f19;
  overflow: hidden;
  padding: 38px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.ps-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ps-logo .live-dot {
  width: 6px;
  height: 6px;
}

.ps-bal {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lime);
  background: rgba(200, 255, 84, 0.1);
  border: 1px solid rgba(200, 255, 84, 0.3);
  padding: 4px 9px;
  border-radius: 999px;
}

.ps-live {
  background: linear-gradient(180deg, #131b2e, #10182a);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px;
}

.ps-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 8px;
}

.ps-live-tag .live-dot {
  width: 6px;
  height: 6px;
}

.ps-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 10px;
}

.ps-team {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ps-score {
  font-size: 1rem;
  font-weight: 900;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.ps-live-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.ps-live-odds button {
  padding: 7px 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text);
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ps-live-odds button:first-child {
  border-color: rgba(200, 255, 84, 0.5);
  color: var(--lime);
}

.ps-slip {
  background: #10182a;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  flex: 1;
}

.ps-slip-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ps-slip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.66rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.ps-slip-row b {
  color: var(--text);
  font-weight: 800;
}

.ps-btn {
  width: 100%;
  margin-top: 10px;
  padding: 9px 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0a0f00;
  background: linear-gradient(135deg, var(--lime), var(--lime-strong));
  border: 0;
  border-radius: 10px;
}

/* Banner text */
.banner-text {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.banner-text p {
  max-width: 460px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 34px;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text);
  transition: color 0.25s ease;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: left;
}

.store-btn small {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(200, 255, 84, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.store-btn:hover svg {
  color: var(--lime);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #3d9673;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding: 72px 0px 56px;
}

.f-brand .logo {
  margin-bottom: 26px;
}

.f-brand h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.f-brand p {
  max-width: 340px;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: 12px;
}

.f-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.f-col a {
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.f-col a:hover {
  color: #000;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #fff;
}

.payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payments span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #0e1526;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {





  .match-card {
    max-width: 460px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-card {
    aspect-ratio: 3 / 2.6;
  }

  .banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 40px;
  }

  .banner-text p {
    margin-inline: auto;
  }

  .store-btns {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

img.logoimg {
  width: 50%;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 15px;
  }

  img.logoimg {
    width: 100%;
  }

  a.logo {
    width: 20%;
  }

  .join-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
  }

  a.login-btn {
    padding: 10px 15px;

  }

  .nav-actions {

    align-items: center;
    gap: 10px;
  }

  .m-row {
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
    padding: 18px 20px;
  }

  .m-odds {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .bet-btn {
    grid-row: 2;
    grid-column: 2;
    align-self: center;
    width: 90px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 24px 44px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }



  .cat-card {
    aspect-ratio: 3 / 2.4;
  }

  .match-teams {
    gap: 4px;
  }

  .cat-label {
    font-size: 14px;
  }

  .crest {
    width: 44px;
    height: 44px;
  }

  .score {
    font-size: 1.7rem;
  }

  .banner-inner {
    padding: 44px 22px;
  }

  .phone {
    width: 218px;
    height: 445px;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* FAQ */
.faq-title {
  text-align: center;
  color: #000;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  margin: 25px 0 18px;
}

.footer li {
  padding: 7px 0;
  list-style: none;
}

.footer ul {
  padding: 0;

}

.faq {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: #bddecd;
  border: 0;
  padding: 14px 8px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #164B0A;
}

h2#faqc {
  margin-bottom: 25px;
  text-align: center;
}

section.section.mobile-banner p {
  margin-bottom: 10px;
}

.faq-a {
  display: none;
  padding: 0 8px 14px;
  color: #3d9673;
  font-size: 16px;
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .chev {
  transform: rotate(180deg)
}

.chev {
  transition: .2s
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, #6a00ff, #ff0080);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* Animated gradient border */
.nav-actions a::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(90deg,
      #ff0080,
      #ff8a00,
      #ffe600,
      #00ffcc,
      #008cff,
      #8a2be2,
      #ff0080);
  background-size: 300% 100%;
  animation: borderAnimation 3s linear infinite;
}

/* Inner background */
.nav-actions a::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 6px;
  background: linear-gradient(135deg, #6a00ff, #ff0080);
}

/* Border animation */
@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* Hover effect */
.nav-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 0, 128, 0.5);
  transition: 0.3s ease;

}

img.galimg {
  display: block;
  margin: auto;
  border-radius: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Container responsive */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Style chung cho table */
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  /* để table không bị quá nhỏ trên mobile */

  margin: 20px 0;
}

ol {
  margin-left: 20px;
}

/* Style cho th */
.table-responsive table th {
  background-color: #3d9673;
  color: #ffffff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #34495e;
}

/* Style cho td */
.table-responsive table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  color: #333;
  background-color: #fff;
}

/* Hover row */
.table-responsive table tbody tr:hover {
  background-color: #f5f7fa;
}

/* Zebra striping (tùy chọn) */
.table-responsive table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Responsive: trên màn rất nhỏ có thể chuyển sang dạng card (tùy chọn) */
@media screen and (max-width: 600px) {
  .table-responsive table {
    font-size: 13px;
  }

  .nav-actions a {
    min-width: 85px;
    padding: 12px 10px;
    font-size: 12px;
  }

  .table-responsive table th,
  .table-responsive table td {
    padding: 8px 10px;
  }
}