.elementor-7 .elementor-element.elementor-element-f3e6751{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-780837d */:root{
  --max: 1180px;
  --radius: 18px;
  --radius2: 24px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  /* Dark */
  --bg: #070b16;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.085);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 22px 60px rgba(0,0,0,.45);

  --accent: #22c55e;     /* green */
  --accent2: #60a5fa;    /* blue */
  --accent3: #fb7185;    /* pink */

  --glass: blur(14px);
}

html[data-theme="light"]{
  --bg: #f6f7fb;
  --panel: rgba(0,0,0,0.045);
  --panel2: rgba(0,0,0,0.065);
  --text: rgba(10,16,28,0.92);
  --muted: rgba(10,16,28,0.62);
  --border: rgba(10,16,28,0.12);
  --shadow: 0 22px 60px rgba(10,16,28,.14);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width: var(--max); margin:0 auto; padding: 0 18px}

.muted{color: var(--muted)}
.tiny{font-size:.86rem}

.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 999;
  background: transparent;
}
.scroll-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}

/* Background orbs + noise */
.bg-orbs{position: fixed; inset:0; z-index:-1; pointer-events:none;}
.orb{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .55;
  animation: float 10s ease-in-out infinite;
}
.orb--a{left:-140px; top:-120px; background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.65), transparent 60%);}
.orb--b{right:-180px; top:-90px; background: radial-gradient(circle at 40% 40%, rgba(96,165,250,.58), transparent 60%); animation-delay: -2s;}
.orb--c{left: 30%; bottom:-220px; background: radial-gradient(circle at 50% 50%, rgba(251,113,133,.38), transparent 62%); animation-delay: -4s;}
.noise{
  position:absolute; inset:0;
  opacity: .06;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes float{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(0,18px,0) scale(1.03)}
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  background: rgba(7,11,22,0.55);
}
html[data-theme="light"] .site-header{ background: rgba(246,247,251,0.78); }

.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0 10px;
}

.brand{
  display:flex; align-items:center; gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand-mark{
  width: 40px; height: 40px; border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.9));
  color: #fff;
  box-shadow: var(--shadow);
}
.brand-name{display:flex; flex-direction:column; line-height:1}
.brand-sub{
  font-size:.78rem;
  color: var(--muted);
  font-weight: 750;
}

.nav{display:flex; gap: 10px; align-items:center}
.nav a{
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: .15s ease;
}
.nav a:hover{background: var(--panel); color: var(--text)}

.header-actions{display:flex; gap: 10px; align-items:center}
.icon-btn{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  cursor:pointer;
  transition: .15s ease;
}
.icon-btn:hover{transform: translateY(-1px); background: var(--panel2)}
.burger{display:none}

.clock{
  display:flex; align-items:center; gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-weight: 800;
}
.clock-dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(34,197,94,.14);
}

/* Ticker */
.ticker{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(34,197,94,.08), rgba(96,165,250,.06), rgba(251,113,133,.06));
}
.ticker-inner{display:flex; align-items:center; gap: 12px; padding: 10px 0}
.ticker-badge{
  font-size:.78rem;
  font-weight: 950;
  letter-spacing: .7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(251,113,133,.92), rgba(96,165,250,.80));
}
.ticker-track{
  position: relative;
  overflow:hidden;
  white-space: nowrap;
  flex:1;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding-right: 28px;
  color: var(--text);
  font-weight: 800;
}
.ticker-dot{opacity:.55}
.ticker-runner{
  display:inline-block;
  animation: marquee 22s linear infinite;
}
@keyframes marquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

/* Search + chips */
.header-bottom{padding: 10px 0 14px}
.search-wrap{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 16px;
}
.search-icon{opacity:.7}
.search-wrap input{
  width:100%;
  border:0;
  outline:none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  padding: 10px 6px;
}

.btn{
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.9));
  color: white;
  padding: 10px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 850;
  transition: .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.02)}
.btn:active{transform: translateY(0px)}
.btn-outline{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-sm{padding: 8px 10px; border-radius: 12px}
.btn-outline.is-on{
  background: var(--panel2);
  border-color: rgba(96,165,250,.35);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding: 12px 2px 0;
}
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  cursor:pointer;
  transition: .15s ease;
  font-weight: 850;
}
.chip:hover{background: var(--panel2); color: var(--text)}
.chip.is-active{
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.9));
}

/* Main */
.main{padding: 20px 0 46px}

.section{margin-top: 26px}
.section-head{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:flex-end;
  margin: 18px 0 12px;
}
.section-head h2{margin:0}
.section-actions{display:flex; gap:10px; align-items:center}

.select{
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  outline:none;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
  align-items:start;
}

.hero-feature{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  overflow:hidden;
  background: linear-gradient(180deg, var(--panel), transparent);
  box-shadow: var(--shadow);
  position:relative;
}
.hero-media{
  height: 300px;
  border-bottom: 1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.hero-media::before{
  content:"";
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,.55), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(96,165,250,.35), transparent 58%),
    radial-gradient(circle at 45% 80%, rgba(251,113,133,.22), transparent 58%);
  transform: rotate(8deg);
  animation: slowpan 14s ease-in-out infinite;
}
@keyframes slowpan{
  0%,100%{transform: translate3d(0,0,0) rotate(8deg) scale(1)}
  50%{transform: translate3d(2%, -2%, 0) rotate(8deg) scale(1.04)}
}

.hero-content{padding: 16px 16px 18px}
.kicker{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.25);
  font-weight: 900;
  font-size: .85rem;
}
.kicker .kdot{opacity:.6}

.hero-title{
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.1;
}
.meta{
  display:flex; gap: 10px; flex-wrap:wrap; align-items:center;
  margin-top: 12px;
  font-size: .92rem;
  color: var(--muted);
}
.meta .dot{opacity:.55}

.hero-secondary{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 16px;
}
.mini{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
  transition: .15s ease;
  cursor:pointer;
}
.mini:hover{transform: translateY(-2px); background: var(--panel2)}
.mini-media{height: 110px; border-bottom: 1px solid var(--border); position:relative}
.mini-media::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(96,165,250,.16));
}
.mini-body{padding: 10px 10px 12px}
.mini-title{margin: 8px 0 6px; font-size: 1rem; line-height:1.2}
.badges{display:flex; gap: 8px; flex-wrap:wrap}
.badge{
  font-size:.75rem;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 900;
}
.badge.accent{
  border-color: rgba(96,165,250,.35);
  background: rgba(96,165,250,.12);
  color: var(--text);
}

.hero-rail{display:grid; gap: 12px}
.rail-card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
}
.rail-head{padding: 14px 14px 0}
.rail-head h2{margin:0; font-size: 1.05rem}

.trending{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.trending li{
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.trending .rank{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 950;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}
.trending a:hover{text-decoration: underline}

.pulse{list-style:none; margin: 10px 0 0; padding: 0}
.pulse li{
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.pulse .tag{
  min-width: 56px;
  font-size: .75rem;
  font-weight: 950;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.pulse a:hover{text-decoration: underline}

/* Stats strip */
.stats-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.stat{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), transparent);
  padding: 14px;
}
.stat-num{
  font-weight: 980;
  font-size: 1.6rem;
}
.stat-label{color: var(--muted); font-weight: 850}

/* News grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  overflow:hidden;
  transition: .15s ease;
  cursor:pointer;
}
.card:hover{transform: translateY(-2px); background: var(--panel2)}
.card-media{height: 140px; border-bottom: 1px solid var(--border); position:relative}
.card-media::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.25), transparent 60%),
              radial-gradient(circle at 70% 35%, rgba(96,165,250,.20), transparent 60%),
              rgba(255,255,255,0.03);
}
.card-body{padding: 12px 12px 14px}
.card-title{margin: 8px 0 8px; font-size: 1.07rem; line-height: 1.2}
.card-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top: 10px;
}
.bookmark-btn{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
  font-weight: 900;
}
.bookmark-btn:hover{background: rgba(255,255,255,0.06)}
.load-more{display:flex; justify-content:center; padding: 16px 0 0}

/* Match Center */
.match-layout{
  display:grid;
  grid-template-columns: 1.1fr 1.1fr .8fr;
  gap: 14px;
}
.panel{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
}
.panel--side{background: linear-gradient(180deg, var(--panel), transparent)}
.panel-head{
  padding: 14px 14px 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom: 1px solid var(--border);
}
.panel-head h3{margin:0; font-size: 1.05rem}

.pill{
  font-size: .75rem;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}
.pill-live{
  color: #fff;
  border-color: rgba(251,113,133,.35);
  background: rgba(251,113,133,.18);
}

.match-list{padding: 10px}
.match{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}
.match:last-child{margin-bottom:0}
.match-teams{display:flex; flex-direction:column; gap: 6px}
.team-row{display:flex; align-items:center; justify-content:space-between; gap: 10px}
.team-name{font-weight: 900}
.team-score{font-weight: 980}
.match-meta{display:flex; flex-direction:column; align-items:flex-end; gap: 6px; color: var(--muted); font-weight: 850}
.live-badge{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251,113,133,.35);
  background: rgba(251,113,133,.16);
  color: #fff;
  font-weight: 950;
  font-size: .75rem;
}

.notes{padding: 12px 14px}
.note{
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.note:first-child{border-top:0; padding-top: 0}
.note-title{margin:0 0 6px; font-weight: 950}
.note a{color: rgba(96,165,250,.92); font-weight: 900}
.note a:hover{text-decoration: underline}

.tabbar{
  display:flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.tab{
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 950;
}
.tab.is-active{
  color: var(--text);
  background: var(--panel);
  border-color: var(--border);
}

/* Table */
.table-card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
}
.table{width:100%; border-collapse: collapse}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  text-align:left;
  font-weight: 850;
}
.table th{color: var(--muted); font-size: .85rem}
.table tr:hover td{background: rgba(255,255,255,0.03)}
.table .pos{
  width: 34px;
  color: var(--muted);
}
.table .club{
  font-weight: 950;
}
.gd-col.is-hidden{display:none}

/* Transfers */
.transfer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.transfer-list{padding: 12px}
.transfer{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
}
.transfer:last-child{margin-bottom:0}
.transfer-top{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items:flex-start;
}
.transfer-player{font-weight: 980}
.transfer-meta{color: var(--muted); font-weight: 850}
.transfer-route{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
}
.route-pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 900;
}
.route-arrow{opacity:.7}
.route-status{
  font-weight: 950;
  color: #fff;
  border: 1px solid rgba(96,165,250,.35);
  background: rgba(96,165,250,.14);
}
.route-status.rumour{
  border-color: rgba(251,113,133,.35);
  background: rgba(251,113,133,.14);
}

.club-hubs{padding: 12px; display:grid; gap: 10px}
.hub{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 12px;
}
.hub-title{margin:0 0 6px; font-weight: 980}
.hub-meta{color: var(--muted); font-weight: 850}

/* Videos */
.video-row{
  display:flex;
  gap: 12px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.video-row::-webkit-scrollbar{height: 10px}
.video-row::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}
.video{
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align: start;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
  cursor:pointer;
  transition: .15s ease;
}
.video:hover{transform: translateY(-2px); background: var(--panel2)}
.video-media{height: 170px; border-bottom: 1px solid var(--border); position:relative}
.video-media::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 40%, rgba(96,165,250,.22), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(34,197,94,.18), transparent 60%),
              rgba(255,255,255,0.03);
}
.video-badge{
  position:absolute;
  bottom: 10px; left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color:#fff;
  font-weight: 950;
  font-size: .78rem;
  backdrop-filter: blur(10px);
}
.video-body{padding: 12px}
.video-title{margin:0 0 8px; font-weight: 980}

.spotlight{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.spotlight-card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(96,165,250,.08), var(--panel));
  padding: 16px;
}
.spotlight-card--alt{background: linear-gradient(135deg, rgba(251,113,133,.10), rgba(96,165,250,.08), var(--panel))}
.newsletter-form{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.newsletter-form input{
  flex:1;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline:none;
  min-width: 0;
}

/* Opinion */
.opinion-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.opinion{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow:hidden;
  cursor:pointer;
  transition: .15s ease;
}
.opinion:hover{transform: translateY(-2px); background: var(--panel2)}
.opinion-media{height: 120px; border-bottom: 1px solid var(--border); position:relative}
.opinion-media::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(251,113,133,.18), rgba(96,165,250,.14), rgba(34,197,94,.10));
}
.opinion-body{padding: 12px 12px 14px}
.opinion-title{margin: 8px 0 8px; font-weight: 980}

/* Footer callouts */
.footer-callouts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.callout{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), transparent);
  padding: 16px;
}
.callout h3{margin: 0 0 8px}
.callout-link{
  display:inline-block;
  margin-top: 10px;
  font-weight: 980;
  color: rgba(96,165,250,.92);
}
.callout-link:hover{text-decoration: underline}

/* Footer */
.site-footer{
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.12);
  backdrop-filter: var(--glass);
}
html[data-theme="light"] .site-footer{ background: rgba(246,247,251,0.65); }
.footer-inner{
  padding: 18px 0;
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-brand{display:flex; align-items:center; gap: 10px}
.footer-links{display:flex; gap: 12px; flex-wrap:wrap}
.footer-links a{color: var(--muted)}
.footer-links a:hover{color: var(--text)}

/* Modal */
.modal{
  border: none;
  padding: 0;
  background: transparent;
}
.modal::backdrop{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}
.modal-card{
  width: min(820px, calc(100vw - 24px));
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(15,18,30,0.68);
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
  overflow:hidden;
}
html[data-theme="light"] .modal-card{ background: rgba(246,247,251,0.90); }
.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.modal-badges{display:flex; gap: 8px; flex-wrap:wrap}
.modal-body{padding: 14px 14px 16px}
.modal-media{
  height: 210px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.25), transparent 60%),
              radial-gradient(circle at 70% 40%, rgba(96,165,250,.20), transparent 60%),
              rgba(255,255,255,0.03);
  margin-bottom: 12px;
}
.modal-actions{display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px}

/* Drawer */
.drawer{
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(420px, calc(100vw - 20px));
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(15,18,30,0.72);
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
  z-index: 70;
  display:flex;
  flex-direction:column;
}
html[data-theme="light"] .drawer{ background: rgba(246,247,251,0.92); }
.drawer-head{
  padding: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3{margin:0}
.drawer-body{padding: 12px; overflow:auto}
.drawer-foot{
  padding: 12px;
  border-top: 1px solid var(--border);
}
.bookmark-item{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 12px;
  margin-bottom: 10px;
}
.bookmark-item:last-child{margin-bottom:0}
.bookmark-item a{font-weight: 980}
.bookmark-item a:hover{text-decoration: underline}
.bookmark-item .rm{
  margin-top: 10px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
  cursor:pointer;
  color: rgba(251,113,133,.92);
  font-weight: 900;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,18,30,0.72);
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
  z-index: 80;
  font-weight: 900;
}
html[data-theme="light"] .toast{ background: rgba(246,247,251,0.92); }

/* Responsive */
@media (max-width: 1060px){
  .hero{grid-template-columns: 1fr}
  .match-layout{grid-template-columns: 1fr}
  .transfer-grid{grid-template-columns: 1fr}
  .spotlight{grid-template-columns: 1fr}
  .stats-strip{grid-template-columns: repeat(2,1fr)}
  .footer-callouts{grid-template-columns: 1fr}
}
@media (max-width: 960px){
  .grid{grid-template-columns: repeat(2, 1fr)}
  .opinion-grid{grid-template-columns: repeat(2, 1fr)}
  .burger{display:inline-grid; place-items:center}
  .nav{
    display:none;
    position:absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex; flex-direction:column; align-items:flex-start}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
  .opinion-grid{grid-template-columns: 1fr}
  .hero-secondary{grid-template-columns: 1fr}
}/* End custom CSS */