/* ═══════════════════════════════════════════════════════
   BluesCricket – main.css (converted from Tailwind)
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --color-bg: #f9f9f9;
  --color-surface: #ffffff;
  --color-surface-2: #f1f5f9;
  --color-slate-950: #f8fafc;
  --color-slate-900: #f1f5f9;
  --color-slate-800: #e2e8f0;
  --color-slate-700: #cbd5e1;
  --color-slate-600: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-400: #475569;
  --color-slate-300: #334155;
  --color-white: #0f172a;
  --color-emerald-600: #c2410c;
  --color-emerald-500: #ea580c;
  --color-emerald-400: #fb923c;
  --color-indigo-600: #4f46e5;
  --color-indigo-500: #6366f1;
  --color-indigo-400: #818cf8;
  --color-violet-600: #7c3aed;
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 2%), 0 2px 4px -3px rgb(0 0 0 / 17%), 0 -45px 5px 28px rgb(0 0 0 / 0%);
}

/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-slate-900);
}

::-webkit-scrollbar-thumb {
  background: var(--color-slate-700);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-slate-600);
}

::selection {
  background: rgba(22, 163, 74, .35);
  color: #0f172a;
}

/* ── Typography ────────────────────────────────────────── */
.font-sports {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .01em;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(131deg, #c2410c, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility Classes ───────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-pad {
  padding: 6rem 0;
}

/* ── Glass & Cards ─────────────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 1);
}

.card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

.card:hover {
  border-color: rgba(0, 0, 0, .08);

}

/* ── Background Patterns ───────────────────────────────── */
/* .bg-grid-pattern {
  background-image: linear-gradient(rgba(30, 41, 59, .3) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 41, 59, .3) 1px, transparent 1px);
  background-size: 50px 50px;
} */

.bg-secondary {
  background: var(--color-surface-2);
}

.bg-slate-950 {
  background: var(--color-slate-950);
}

.bg-black {
  background: #ffffff;
}

/* ── Cricket Badge ─────────────────────────────────────── */
.cricket-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(194, 65, 12, .2);
  background: rgba(255, 237, 213, .6);
  color: #9a3412;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  backdrop-filter: blur(8px);
}

.cricket-badge-green {
  border-color: rgba(194, 65, 12, .4);
  background: rgba(255, 237, 213, .9);
  color: #c2410c;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: .75rem;
  font-weight: 600;
  color: white;
  background: #c2410c;
  box-shadow: 0 10px 40px -10px rgba(194, 65, 12, .3);
  transition: all .2s;
}

.btn-primary:hover {
  background: #9a3412;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: .75rem;
  font-weight: 600;
  color: #0f172a;
  background: rgb(255 243 243 / 38%);
  border: 1px solid rgba(0, 0, 0, .15);
  transition: all .2s;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, .15);
}

/* ── Glow Effects ──────────────────────────────────────── */
.glow-emerald {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  font-weight: 600;
  color: white;
  background: #c2410c;
  box-shadow: 0 0 40px rgba(194, 65, 12, .3);
  transition: all .2s;
  position: relative;
}

.glow-emerald:hover {
  background: #9a3412;
  box-shadow: 0 0 60px rgba(194, 65, 12, .5);
}

.glow-green {
  box-shadow: 0 0 24px rgba(22, 163, 74, .2), 0 0 48px rgba(22, 163, 74, .1);
}

/* ── Hover Lift ────────────────────────────────────────── */
.hover-lift {
  transition: transform .2s ease, box-shadow .2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

/* ── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
  border: 1px solid;
}

.badge-sky {
  color: #295555;
  background: rgb(255, 255, 255);
  border-color: rgba(56, 189, 248, .2);
}

.badge-rose {
  color: #6e2a2a;
  background: rgba(255, 255, 255, 0.521);
  border-color: rgb(251 113 133 / 26%);
}

.badge-emerald {
  color: #356a5a;
  background: rgb(247 255 252 / 84%);
  border-color: rgba(52, 211, 153, .2);
}

.badge-amber {
  color: #d97706;
  background: rgba(251, 191, 36, .1);
  border-color: rgba(251, 191, 36, .2);
}

.badge-slate {
  color: #475569;
  background: rgba(148, 163, 184, .1);
  border-color: rgba(148, 163, 184, .2);
}

/* ── Status Badges ─────────────────────────────────────── */
.status-approved {
  color: #15803d;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .2);
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
}

.status-pending {
  color: #d97706;
  background: rgba(251, 191, 36, .1);
  border: 1px solid rgba(251, 191, 36, .2);
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
}

.status-rejected {
  color: #e11d48;
  background: rgba(251, 113, 133, .1);
  border: 1px solid rgba(251, 113, 133, .2);
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
}

.status-scheduled {
  color: #4f46e5;
  background: rgba(129, 140, 248, .1);
  border: 1px solid rgba(129, 140, 248, .2);
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
}

.status-inactive {
  color: #475569;
  background: rgba(148, 163, 184, .1);
  border: 1px solid rgba(148, 163, 184, .2);
  padding: .2rem .7rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes heroSmokeRise {
  0% {
    opacity: .12;
    transform: translateY(0) scaleX(1)
  }

  100% {
    opacity: .20;
    transform: translateY(-20px) scaleX(1.05)
  }
}

.animate-fade-in {
  animation: fadeIn .3s ease-in-out;
}

.animate-slide-up {
  animation: slideUp .4s ease-out;
}

.rotate-animate {
  animation: rotateCircle 12s linear infinite;
}

.skeleton {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: .5rem;
}

/* ─────────────────────────────────────────────────────────
   NAVBAR
   Default: semi-transparent dark glass (readable over hero)
   Scrolled: clean white frosted glass (readable over page)
───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgb(10 14 30 / 78%) 0%, rgb(6 7 12 / 0%) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.navbar.scrolled,
.navbar--light {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 1px 24px rgba(0, 0, 0, .07);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  color: #1e40af;
  font-weight: 700;
  font-size: 1.25rem;
  transition: color .35s ease;
}

.nav-logo-text span {
  color: #c2410c;
}

/* ── Desktop nav links ── */
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}

@media(min-width:768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, .15);
}

/* Scrolled state nav links */
.navbar.scrolled .nav-link,
.navbar--light .nav-link {
  color: #475569;
}

.navbar.scrolled .nav-link:hover,
.navbar--light .nav-link:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, .07);
}

.navbar.scrolled .nav-link.active,
.navbar--light .nav-link.active {
  color: #0f172a;
  background: rgba(15, 23, 42, .08);
}

/* ── CTA Buttons ── */
.nav-cta {
  display: none;
  align-items: center;
  gap: .75rem;
}

@media(min-width:768px) {
  .nav-cta {
    display: flex;
  }
}

.nav-btn-signin {
  padding: .5rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  background: #c2410c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(194, 65, 12, .3);
  transition: all .2s;
  letter-spacing: .01em;
}

.nav-btn-signin:hover {
  color: #ffffff;
}

.navbar.scrolled .nav-btn-signin,
.navbar--light .nav-btn-signin {
  color: #ffffff;
}

.navbar.scrolled .nav-btn-signin:hover,
.navbar--light .nav-btn-signin:hover {
  color: #0f172a;
}

.nav-btn-start {
  padding: .5rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  background: #c2410c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(194, 65, 12, .3);
  transition: all .2s;
  letter-spacing: .01em;
}

.nav-btn-start:hover {
  background: #9a3412;
  box-shadow: 0 4px 22px rgba(194, 65, 12, .45);
  transform: translateY(-1px);
}

/* ── Mobile hamburger ── */
.nav-mobile-btn {
  display: flex;
  padding: .5rem;
  border-radius: .5rem;
  color: rgba(255, 255, 255, .8);
  transition: all .2s;
}

@media(min-width:768px) {
  .nav-mobile-btn {
    display: none;
  }
}

.nav-mobile-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
}

.navbar.scrolled .nav-mobile-btn,
.navbar--light .nav-mobile-btn {
  color: #475569;
}

.navbar.scrolled .nav-mobile-btn:hover,
.navbar--light .nav-mobile-btn:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, .07);
}

/* ── Mobile menu panel ── */
.nav-mobile-menu {
  background: rgba(10, 14, 30, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1rem;
  display: none;
}

.nav-mobile-menu.open {
  display: block;
  animation: slideUp .3s ease-out;
}

.nav-mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .75rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  transition: all .2s;
  margin-bottom: .25rem;
}

.nav-mobile-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .1);
}

.nav-mobile-divider {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: .75rem 0;
}

/* ── Cricket Ball SVG ──────────────────────────────────── */
.cricket-ball {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cricket-ball__svg {
  width: 100%;
  height: 100%;
}

.ball-base {
  fill: #dc2626;
  filter: drop-shadow(0 4px 10px rgba(220, 38, 38, .4));
}

.ball-seam {
  stroke: white;
  stroke-width: 1.2;
  fill: none;
  opacity: .9;
}

.stitch {
  stroke: white;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: .7;
}

/* player */
/* ── Profile hero ────────────────────────────────────────── */
.pp-hero {
  position: relative;
  overflow: hidden;
  padding-top: 0.5rem
}

.pp-cover {
  height: 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b, #312e81)
}

.pp-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55
}

.pp-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, .5) 50%, transparent 100%)
}

.pp-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  margin-top: -5rem
}

.pp-id {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap
}

.pp-avatar {
  width: 110px;
  height: 110px;
  border-radius: 1.25rem;
  border: 4px solid #fff;
  object-fit: cover;
  background: #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  flex-shrink: 0
}

.pp-nameblock {
  padding-bottom: .25rem
}

.pp-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.pp-meta {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-wrap: wrap;
  margin-bottom: .5rem
}

.pp-dot {
  width: 3px;
  height: 3px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .4)
}

.pp-meta-text {
  font-size: .8rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500
}

.pp-social {
  display: flex;
  gap: .5rem
}

.pp-slink {
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, box-shadow .15s
}

.pp-slink:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

/* Info strip */
.pp-strip {
  max-width: 1250px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.pp-strip-item {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: .875rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
  text-align: center
}

.pp-strip-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a
}

.pp-strip-lbl {
  font-size: .68rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .15rem
}

/* Content layout */
.pp-body {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:900px) {
  .pp-body {
    grid-template-columns: 2fr 1fr
  }
}

.pp-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04)
}

.pp-card-h {
  font-size: .875rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #f1f5f9;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .5rem
}

/* Stats grid */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .75rem
}

.ps-cell {
  background: #f8fafc;
  border-radius: .875rem;
  padding: .875rem .75rem;
  text-align: center;
  transition: background .15s
}

.ps-cell:hover {
  background: #eef2ff
}

.ps-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Oswald', sans-serif;
  display: block;
  line-height: 1
}

.ps-lbl {
  font-size: .62rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .3rem
}

/* Badges bar */
.pp-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem
}

.pp-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-radius: .875rem;
  border: 1px solid #c7d2fe;
  min-width: 80px
}

.pp-badge-icon {
  font-size: 1.5rem
}

.pp-badge-val {
  font-size: .8rem;
  font-weight: 800;
  color: #4f46e5
}

.pp-badge-lbl {
  font-size: .6rem;
  color: #6366f1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em
}

/* Performance bar chart */
.pf-bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .625rem
}

.pf-bar-label {
  font-size: .75rem;
  font-weight: 600;
  color: #475569;
  width: 80px;
  flex-shrink: 0
}

.pf-bar-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden
}

.pf-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(to right, #6366f1, #818cf8);
  transition: width .6s ease
}

.pf-bar-val {
  font-size: .72rem;
  font-weight: 700;
  color: #475569;
  width: 40px;
  text-align: right
}

/* Media grid */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem
}

.pm-item {
  border-radius: .875rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: #f1f5f9;
  cursor: pointer
}

.pm-item img,
.pm-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.pm-item:hover img,
.pm-item:hover video {
  transform: scale(1.06)
}

.pm-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .4rem .5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.pm-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #4f46e5;
  font-size: .8rem;
  font-weight: 600;
  padding: .75rem;
  text-align: center
}

/* Related players */
.rel-card {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem;
  border-radius: .875rem;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all .2s;
  text-decoration: none;
  color: inherit
}

.rel-card:hover {
  background: #eef2ff;
  border-color: #c7d2fe
}

.rel-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0
}

.rel-name {
  font-size: .85rem;
  font-weight: 700;
  color: #0f172a
}

.rel-role {
  font-size: .7rem;
  color: #64748b;
  margin-top: .1rem
}

/* Breadcrumb */
.pp-bc {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #64748b
}

.pp-bc a {
  color: #6366f1;
  font-weight: 500;
  transition: color .15s
}

.pp-bc a:hover {
  color: #4f46e5
}

.pp-bc-sep {
  color: #cbd5e1
}

/* ─────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  top: -5%;
  bottom: -5%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:linear-gradient(to right, rgb(67 67 67) 0%, rgb(72 72 72 / 49%) 50%, rgb(111 79 79 / 47%) 100%), linear-gradient(to top, rgb(11 19 15) 0%, #0e07075e 40%, rgb(0 0 0 / 92%) 100%);
}

.hero-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .2;
  height: 60%;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(194, 65, 12, .25) 0%, transparent 70%);
  filter: blur(54px);
  animation: heroSmokeRise 16s ease-in-out infinite alternate;
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 1rem 6rem;
  z-index: 10;
}

.hero-content {
  max-width: 42rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: #ffffff;
  line-height: .95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.hero-subtitle {
  color: #f0f6ff;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  max-width: 44rem;
}

@media(min-width:640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  padding: 1rem;
  border-radius: .75rem;
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #eaf0ff;
}

.hero-stat-label {
  color: #cfcfcf;
  font-size: .75rem;
  margin-top: .125rem;
}

/* ─────────────────────────────────────────────────────────
   PLAYER CARDS
───────────────────────────────────────────────────────── */
.player-card {
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.player-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(194, 65, 12, .18), 0 0 0 1px rgba(194, 65, 12, .22);
}

.player-img {
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card:hover .player-img {
  transform: scale(1.08);
}

/* ─────────────────────────────────────────────────────────
   OVERLAPPING IMAGES
───────────────────────────────────────────────────────── */
.img-overlap-back {
  border-radius: 1.25rem;
  overflow: hidden;
  transform: rotate(-4deg);
  transform-origin: bottom left;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
}

.img-overlap-front {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .08);
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
  background: #ffffff;
  padding: 5rem 1rem 2.5rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 2.5rem;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, #9a3412 0%, #c2410c 60%, #ea580c 100%);
  border-radius: 1.25rem;
}

@media(min-width:768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-heading {
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 40rem;
}

.footer-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 9999px;
  background: #c2410c;
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(194, 65, 12, .3);
  transition: all .2s;
  white-space: nowrap;
}

.footer-cta:hover {
  box-shadow: 0 4px 25px rgba(16, 185, 129, .4);
}

.footer-divider {
  height: 1px;
  background: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col-title {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  transition: all .2s;
}

.footer-social a:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #a3a3a3;
  font-size: .9375rem;
  font-weight: 500;
  transition: color .2s;
}

.footer-links a:hover {
  color: #0f172a;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.footer-newsletter input {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: .9375rem;
  border-radius: .5rem;
  padding: .875rem 1rem;
  outline: none;
  transition: border-color .2s;
}

.footer-newsletter input:focus {
  border-color: #c2410c;
}

.footer-newsletter button {
  background: #c2410c;
  color: #ffffff;
  padding: .75rem 1.75rem;
  border-radius: 9999px;
  font-size: .9375rem;
  font-weight: 500;
  width: fit-content;
  transition: all .2s;
}

.footer-newsletter button:hover {
  background: #9a3412;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .8125rem;
  color: #a3a3a3;
  font-weight: 500;
}

@media(min-width:768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.footer-bottom-links a:hover {
  color: #0f172a;
}

.footer-bottom-links span {
  color: #404040;
}

/* ─────────────────────────────────────────────────────────
   DASHBOARD LAYOUT
───────────────────────────────────────────────────────── */
.dashboard-wrap {
  min-height: 100vh;
  background: #f9f9f9;
  display: flex;
  overflow: hidden;
  position: relative;
}

.dashboard-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: rgba(99, 102, 241, .1);
  filter: blur(120px);
  border-radius: 9999px;
  pointer-events: none;
}

.dashboard-glow-2 {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 35%;
  height: 35%;
  background: rgba(16, 185, 129, .05);
  filter: blur(100px);
  border-radius: 9999px;
  pointer-events: none;
}

.dashboard-glow-3 {
  position: absolute;
  bottom: -10%;
  left: 20%;
  width: 50%;
  height: 50%;
  background: rgba(79, 70, 229, .05);
  filter: blur(150px);
  border-radius: 9999px;
  pointer-events: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-right: 1px solid rgba(0, 0, 0, .02);
  transition: all .3s ease-in-out;
  width: 16rem;
  transform: translateX(-100%);
}

@media(min-width:1024px) {
  .sidebar {
    transform: translateX(0);
  }
}

.sidebar.mobile-open {
  transform: translateX(0);
}

.sidebar.collapsed {
  width: 5rem;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  height: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .02);
  padding: 0 1.5rem;
  gap: .75rem;
}

.sidebar.collapsed .sidebar-logo {
  justify-content: center;
}

.sidebar-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-logo-text {
  color: #1e40af;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.sidebar-logo-text span {
  color: #c2410c;
}

.sidebar.collapsed .sidebar-logo-text,
.sidebar.collapsed .sidebar-user-info {
  display: none;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem .5rem;
  overflow-y: auto;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  border-radius: .75rem;
  transition: all .3s;
  position: relative;
  margin-bottom: .375rem;
  color: #64748b;
  font-weight: 600;
  font-size: .875rem;
}

.sidebar:not(.collapsed) .sidebar-nav-item {
  padding: .75rem 1rem;
  gap: .75rem;
}

.sidebar.collapsed .sidebar-nav-item {
  padding: .75rem;
  justify-content: center;
}

.sidebar-nav-item:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, .02);
}

.sidebar-nav-item.active {
  background: rgba(99, 102, 241, .1);
  color: #4f46e5;
}

.sidebar-nav-item .active-dot {
  width: .375rem;
  height: .375rem;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  margin-left: auto;
}

.sidebar.collapsed .active-dot {
  display: none;
}

.sidebar-nav-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-nav-item.active .sidebar-nav-icon {
  color: #4f46e5;
}

.sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, .02);
  padding: 1rem;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  margin-bottom: .5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(0, 0, 0, .02);
}

.sidebar-user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, #fdfdff, #8985ce);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-user-name {
  color: #0f172a;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.sidebar-user-role {
  color: #64748b;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.sidebar-footer-link {
  display: flex;
  align-items: center;
  border-radius: .75rem;
  color: #64748b;
  transition: all .2s;
}

.sidebar:not(.collapsed) .sidebar-footer-link {
  padding: .75rem 1rem;
  gap: .75rem;
}

.sidebar.collapsed .sidebar-footer-link {
  padding: .75rem;
  justify-content: center;
}

.sidebar-footer-link:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, .02);
}

.sidebar-footer-link.logout:hover {
  color: #e11d48;
  background: rgba(251, 113, 133, .1);
}

.sidebar-footer-link span {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.sidebar.collapsed .sidebar-footer-link span,
.sidebar.collapsed .sidebar-user {
  display: none;
}


.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 30;
  display: none;
}

.sidebar-overlay.visible {
  display: block;
}

/* Dashboard content area */
.dashboard-content {
  flex: 1;
  transition: all .3s ease-in-out;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.dashboard-topbar {
  height: 5rem;
  background: rgba(241, 245, 249, .8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .02);
}

@media(min-width:640px) {
  .dashboard-topbar {
    padding: 0 2rem;
  }
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.topbar-search {
  display: none;
  align-items: center;
  gap: .75rem;
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: .75rem;
  padding: .5rem 1rem;
  width: 18rem;
  transition: all .2s;
}

@media(min-width:640px) {
  .topbar-search {
    display: flex;
  }
}

.topbar-search:focus-within {
  box-shadow: 0 0 0 1px rgba(99, 102, 241, .5);
}

.topbar-search input {
  background: transparent;
  color: #0f172a;
  font-size: .875rem;
  outline: none;
  width: 100%;
  border: none;
}

.topbar-search input::placeholder {
  color: #64748b;
}

.topbar-btn {
  padding: .625rem;
  border-radius: .75rem;
  color: #475569;
  border: 1px solid rgba(0, 0, 0, .03);
  background: transparent;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-btn:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, .03);
}

.topbar-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: rgba(194, 65, 12, .12);
  border: 1px solid rgba(194, 65, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2410c;
  font-size: .875rem;
  font-weight: 700;
}

.dashboard-main-wrap {
  flex: 1;
  padding-right: .5rem;
  padding-bottom: .5rem;
  overflow: hidden;
}

@media(min-width:640px) {
  .dashboard-main-wrap {
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}

.dashboard-main {
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, .02);
  overflow: auto;
  position: relative;
}

@media(min-width:640px) {
  .dashboard-main {
    border-radius: 2.5rem;
  }
}

.dashboard-inner {
  padding: .75rem;
  position: relative;
  z-index: 10;
}

@media(min-width:640px) {
  .dashboard-inner {
    padding: 2rem;
  }
}

.dashboard-banner {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(16, 185, 129, .1);
  border: 1px solid rgba(74, 222, 128, .16);
  background: linear-gradient(135deg, rgba(22, 163, 74, .2), rgba(14, 165, 233, .12));
  backdrop-filter: blur(18px);
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.dashboard-banner:hover {
  border-color: rgba(74, 222, 128, .3);
  transform: translateY(-2px);
}

/* Dashboard stat cards */
.stat-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(0, 0, 0, .03);
  transition: all .3s;
  box-shadow: 0 3px 9px -8px rgba(0, 0, 0, .5);
}

.stat-card:hover {
  border-color: rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

/* ─────────────────────────────────────────────────────────
   FORMS
───────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: .5rem;
}

.form-input {
  width: 100%;
  background: rgb(249 247 255);
  border: 1px solid #e1e1e1;
  border-radius: .75rem;
  padding: .75rem 1rem;
  color: #0f172a;
  font-size: .875rem;
  outline: none;
  transition: all .2s;
}

.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, .25);
}

.form-input::placeholder {
  color: #64748b;
}

/* ─────────────────────────────────────────────────────────
   GRIDS
───────────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width:640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media(min-width:768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width:1024px) {
  .grid-2-3 {
    grid-template-columns: 2fr 1fr;
  }
}

/* ─────────────────────────────────────────────────────────
   TABLES
───────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, .03);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

th {
  padding: .75rem 1rem;
  text-align: left;
  color: #64748b;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(255, 255, 255, .02);
  border-bottom: 1px solid rgba(0, 0, 0, .03);
}

td {
  padding: .75rem 1rem;
  color: #334155;
  border-bottom: 1px solid rgba(0, 0, 0, .02);
}

tr:hover td {
  background: rgba(255, 255, 255, .02);
}

tr:last-child td {
  border-bottom: none;
}

/* ─────────────────────────────────────────────────────────
   SECTION HELPERS
───────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-subtitle {
  color: #475569;
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE HELPERS
───────────────────────────────────────────────────────── */
.pt-navbar {
  padding-top: 7rem;
}

.hidden {
  display: none !important;
}

@media(min-width:768px) {
  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }
}

/* ─────────────────────────────────────────────────────────
   MOBILE MENU TOGGLE ICON
───────────────────────────────────────────────────────── */
.hamburger {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all .3s;
}

/* ─────────────────────────────────────────────────────────
   MISC
───────────────────────────────────────────────────────── */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.rounded-xl {
  border-radius: .75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.text-white {
  color: #0f172a;
}

.text-sm {
  font-size: .875rem;
}

.text-xs {
  font-size: .75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.w-full {
  width: 100%;
}

.space-y-2>*+* {
  margin-top: .5rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Brand name colours ── */
.bc-blues  { color: #1e40af; font-weight: inherit; }
.bc-cricket{ color: #c2410c; font-weight: inherit; }