:root{
  --smt-primary:#16C784;
  --smt-primary-hover:#0EA66B;
  --smt-secondary:#071426;
  --smt-secondary-surface:#0E2038;
  --smt-accent:#1DA1F2;
  --smt-live:#EF4444;
  --smt-warning:#F59E0B;
  --smt-bg:#F4F7FA;
  --smt-surface:#FFFFFF;
  --smt-surface-soft:#F8FAFC;
  --smt-text:#142033;
  --smt-muted:#68778C;
  --smt-border:#E3EAF1;
  --smt-shadow:0 14px 38px rgba(7,20,38,.08);
  --smt-shadow-sm:0 7px 20px rgba(7,20,38,.07);
  --smt-radius-xs:8px;
  --smt-radius-sm:12px;
  --smt-radius:16px;
  --smt-radius-lg:22px;
  --smt-site-max-width:1520px;
  --smt-outer-max-width:1880px;
  --smt-header-height:72px;
  --smt-transition:180ms ease;
  color-scheme:light;
}

html[data-theme="dark"]{
  --smt-bg:#07111F;
  --smt-surface:#0D1B2E;
  --smt-surface-soft:#102239;
  --smt-text:#F1F7FC;
  --smt-muted:#9EB0C4;
  --smt-border:#203650;
  --smt-shadow:0 18px 42px rgba(0,0,0,.24);
  --smt-shadow-sm:0 8px 22px rgba(0,0,0,.18);
  color-scheme:dark;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{margin:0;background:var(--smt-bg);color:var(--smt-text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;font-size:15px;line-height:1.55;-webkit-font-smoothing:antialiased;overflow-x:hidden}
body.smt-scroll-locked{overflow:hidden;touch-action:none}
button,input,select,textarea{font:inherit}
button,a{touch-action:manipulation}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
svg{display:block}
button{color:inherit}
[hidden]{display:none!important}
.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:focus-visible{outline:3px solid color-mix(in srgb,var(--smt-accent) 68%,white);outline-offset:3px}

.smt-container{width:min(calc(100% - 32px),var(--smt-site-max-width));margin-inline:auto}
.smt-narrow-container{max-width:900px}
.smt-site{min-height:100vh}
.smt-main{position:relative}
.smt-icon{width:20px;height:20px;flex:0 0 auto}
.smt-skip-link{position:fixed;left:14px;top:-100px;z-index:9999;background:var(--smt-primary);color:#04140d;font-weight:800;padding:12px 16px;border-radius:0 0 10px 10px;transition:top var(--smt-transition)}
.smt-skip-link:focus{top:0}

/* Buttons */
.smt-button,.smt-icon-button,.smt-filter-bar button,.smt-tabs button,.smt-news-filters button,.smt-carousel-controls button,.smt-date-nav button,.smt-footer-settings button,.smt-drawer-tools button{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.smt-button{min-height:44px;padding:10px 16px;border-radius:12px;font-weight:800;transition:transform var(--smt-transition),background var(--smt-transition),border-color var(--smt-transition)}
.smt-button:hover{transform:translateY(-1px)}
.smt-button-primary{background:var(--smt-primary);color:#03150e}
.smt-button-primary:hover{background:var(--smt-primary-hover);color:#fff}
.smt-button-secondary{background:var(--smt-surface);border:1px solid var(--smt-border);box-shadow:var(--smt-shadow-sm)}
.smt-button-secondary:hover{border-color:var(--smt-primary)}
.smt-icon-button{width:44px;height:44px;border-radius:12px;border:1px solid var(--smt-border);background:var(--smt-surface);transition:background var(--smt-transition),border-color var(--smt-transition),transform var(--smt-transition)}
.smt-icon-button:hover{border-color:var(--smt-primary);transform:translateY(-1px)}

/* Top ads */
.smt-top-ad{background:var(--smt-secondary);color:#fff;border-bottom:1px solid rgba(255,255,255,.08)}
.smt-top-ad-grid{min-height:64px;display:grid;grid-template-columns:minmax(0,320px) 1fr minmax(0,320px);align-items:center;gap:18px;padding-block:7px}
.smt-top-ad-message{text-align:center;font-size:13px;color:#B9C8D8;letter-spacing:.02em}
.smt-ad-slot{position:relative;min-height:50px;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:9px;background:rgba(255,255,255,.06);border:1px dashed rgba(255,255,255,.16)}
.smt-ad-slot small,.smt-ad-rail small{position:absolute;left:7px;top:3px;font-size:8px;line-height:1;text-transform:uppercase;letter-spacing:.12em;color:#93A6BA}
.smt-ad-mobile{display:none}
.smt-ad-rails{pointer-events:none}
.smt-ad-rail{position:fixed;z-index:4;top:150px;width:145px;min-height:500px;background:var(--smt-surface);border:1px solid var(--smt-border);border-radius:14px;box-shadow:var(--smt-shadow-sm);pointer-events:auto;display:none;overflow:hidden}
.smt-ad-rail-left{left:max(12px,calc((100vw - var(--smt-outer-max-width))/2))}
.smt-ad-rail-right{right:max(12px,calc((100vw - var(--smt-outer-max-width))/2))}

/* Header */
.smt-header{position:sticky;top:0;z-index:100;background:color-mix(in srgb,var(--smt-surface) 93%,transparent);backdrop-filter:blur(16px);border-bottom:1px solid var(--smt-border);transition:box-shadow var(--smt-transition)}
.smt-header.is-scrolled{box-shadow:0 8px 30px rgba(7,20,38,.09)}
.smt-header-inner{height:var(--smt-header-height);display:flex;align-items:center;gap:24px}
.smt-brand{flex:0 0 auto}
.smt-brand-link{display:flex;align-items:center;gap:11px}
.smt-brand-mark{width:40px;height:40px;border-radius:13px;display:grid;place-items:center;color:#042017;background:linear-gradient(135deg,var(--smt-primary),#72F2BD);box-shadow:0 8px 22px rgba(22,199,132,.24)}
.smt-brand-mark .smt-icon{width:23px;height:23px}
.smt-brand-copy{display:flex;flex-direction:column;line-height:1.15}
.smt-brand-copy strong{font-size:17px;letter-spacing:-.02em}
.smt-brand-copy small{margin-top:4px;color:var(--smt-muted);font-size:10px;white-space:nowrap}
.custom-logo-link img{max-height:46px;width:auto}
.smt-desktop-nav{height:100%;display:flex;align-items:center;flex:1;min-width:0}
.smt-desktop-nav>ul{height:100%;display:flex;align-items:stretch;gap:2px;list-style:none;margin:0;padding:0}
.smt-desktop-nav>ul>li{position:relative;display:flex;align-items:center}
.smt-desktop-nav>ul>li>a{height:100%;display:flex;align-items:center;padding:0 11px;font-size:14px;font-weight:750;color:color-mix(in srgb,var(--smt-text) 90%,var(--smt-muted));position:relative;white-space:nowrap}
.smt-desktop-nav>ul>li>a::after{content:"";position:absolute;left:11px;right:11px;bottom:0;height:3px;border-radius:3px 3px 0 0;background:var(--smt-primary);transform:scaleX(0);transition:transform var(--smt-transition)}
.smt-desktop-nav>ul>li:hover>a::after,.smt-desktop-nav>ul>li>a:hover::after{transform:scaleX(1)}
.smt-nav-live{gap:7px}
.smt-nav-live>span{width:7px;height:7px;border-radius:50%;background:var(--smt-live);box-shadow:0 0 0 4px rgba(239,68,68,.12)}
.smt-header-actions{margin-left:auto;display:flex;align-items:center;gap:8px}
.smt-timezone-button{height:44px;border:1px solid var(--smt-border);background:var(--smt-surface);border-radius:12px;padding:0 12px;display:flex;align-items:center;gap:7px;font-size:12px;font-weight:750;cursor:pointer}
.smt-menu-toggle{display:none}
.smt-theme-icon-sun{display:none}
html[data-theme="dark"] .smt-theme-icon-moon{display:none}
html[data-theme="dark"] .smt-theme-icon-sun{display:block}

/* Mega menu */
.smt-mega-menu{position:absolute;left:-120px;top:calc(100% - 1px);width:620px;display:grid;grid-template-columns:190px 1fr;gap:20px;padding:22px;background:var(--smt-surface);border:1px solid var(--smt-border);border-radius:0 0 18px 18px;box-shadow:0 24px 50px rgba(7,20,38,.16);opacity:0;visibility:hidden;transform:translateY(8px);transition:all var(--smt-transition);z-index:30}
.has-mega:hover>.smt-mega-menu,.has-mega:focus-within>.smt-mega-menu{opacity:1;visibility:visible;transform:translateY(0)}
.smt-mega-eyebrow,.smt-eyebrow{display:block;color:var(--smt-primary-hover);font-size:11px;line-height:1.2;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.smt-mega-menu h3{margin:6px 0 8px;font-size:22px;line-height:1.15}
.smt-mega-menu p{margin:0;color:var(--smt-muted);font-size:12px}
.smt-mega-links{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.smt-mega-links a{min-height:50px;padding:9px 11px;border-radius:10px;background:var(--smt-surface-soft);display:flex;align-items:center;gap:9px;font-weight:750;font-size:13px;border:1px solid transparent;transition:all var(--smt-transition)}
.smt-mega-links a:hover{border-color:var(--smt-primary);background:color-mix(in srgb,var(--smt-primary) 7%,var(--smt-surface))}
.smt-mega-links a small{display:block;margin-left:auto;color:var(--smt-muted);font-weight:600;font-size:10px}
.smt-mini-badge{width:28px;height:28px;border-radius:8px;background:color-mix(in srgb,var(--smt-primary) 14%,var(--smt-surface));display:grid;place-items:center;font-size:8px;font-weight:900;color:var(--smt-primary-hover)}
.smt-mega-all{grid-column:1/-1;border-top:1px solid var(--smt-border);padding-top:15px;display:flex;justify-content:flex-end;align-items:center;gap:6px;color:var(--smt-primary-hover);font-weight:850;font-size:12px}
.smt-mega-all .smt-icon{width:16px}

/* Drawers and dialogs */
.smt-drawer-backdrop{position:fixed;inset:0;background:rgba(3,12,23,.6);z-index:299;backdrop-filter:blur(2px)}
.smt-mobile-drawer{position:fixed;inset:0 auto 0 0;width:min(88vw,370px);background:var(--smt-surface);z-index:300;transform:translateX(-105%);transition:transform 220ms ease;box-shadow:20px 0 50px rgba(0,0,0,.2);display:flex;flex-direction:column}
.smt-mobile-drawer.is-open{transform:translateX(0)}
.smt-drawer-header{height:68px;flex:0 0 68px;border-bottom:1px solid var(--smt-border);display:flex;align-items:center;justify-content:space-between;padding:0 16px}
.smt-drawer-header strong{font-size:17px}
.smt-drawer-scroll{overflow-y:auto;overscroll-behavior:contain;padding:12px 14px 28px}
.smt-drawer-scroll nav>a,.smt-drawer-scroll summary{min-height:48px;display:flex;align-items:center;padding:0 13px;border-radius:10px;font-weight:800;cursor:pointer;list-style:none}
.smt-drawer-scroll nav>a:hover,.smt-drawer-scroll summary:hover{background:var(--smt-surface-soft)}
.smt-drawer-scroll summary::-webkit-details-marker{display:none}
.smt-drawer-scroll summary::after{content:"+";margin-left:auto;color:var(--smt-muted);font-size:20px;font-weight:500}
.smt-drawer-scroll details[open] summary::after{content:"−"}
.smt-drawer-scroll details>div{margin:0 0 8px 12px;padding:6px 0 6px 14px;border-left:1px solid var(--smt-border)}
.smt-drawer-scroll details a{display:block;padding:9px 10px;font-size:13px;color:var(--smt-muted);border-radius:8px}
.smt-drawer-scroll details a:hover{background:var(--smt-surface-soft);color:var(--smt-text)}
.smt-drawer-all{color:var(--smt-primary-hover)!important;font-weight:800}
.smt-drawer-tools{margin-top:18px;padding-top:16px;border-top:1px solid var(--smt-border);display:grid;gap:8px}
.smt-drawer-tools button{justify-content:flex-start;min-height:46px;padding:0 13px;border-radius:10px;border:1px solid var(--smt-border);background:var(--smt-surface-soft);font-weight:750}
.smt-dialog{width:min(calc(100% - 28px),620px);border:1px solid var(--smt-border);border-radius:20px;background:var(--smt-surface);color:var(--smt-text);padding:0;box-shadow:0 30px 80px rgba(0,0,0,.28)}
.smt-dialog::backdrop{background:rgba(3,12,23,.65);backdrop-filter:blur(5px)}
.smt-dialog-head{display:flex;align-items:center;justify-content:space-between;padding:20px;border-bottom:1px solid var(--smt-border)}
.smt-dialog-head h2{margin:4px 0 0;font-size:24px}
.smt-search-box{margin:20px 20px 0;display:grid;grid-template-columns:24px 1fr auto;align-items:center;gap:8px;height:56px;border:1px solid var(--smt-border);border-radius:14px;padding:0 13px;background:var(--smt-surface-soft)}
.smt-search-box:focus-within{border-color:var(--smt-primary);box-shadow:0 0 0 4px color-mix(in srgb,var(--smt-primary) 13%,transparent)}
.smt-search-box input{height:100%;border:0;background:transparent;outline:0;min-width:0;color:var(--smt-text)}
.smt-search-box button{border:0;background:transparent;color:var(--smt-primary-hover);font-weight:800;cursor:pointer}
.smt-search-meta{padding:10px 20px 14px;color:var(--smt-muted);font-size:11px;display:flex;align-items:center;gap:5px}
.smt-search-meta span{margin-right:auto}
kbd{border:1px solid var(--smt-border);border-bottom-width:2px;border-radius:5px;padding:1px 5px;background:var(--smt-surface-soft);font-size:9px}
.smt-search-results{max-height:430px;overflow:auto;padding:0 12px 16px}
.smt-search-result{display:grid;grid-template-columns:40px 1fr auto;gap:10px;align-items:center;padding:10px;border-radius:11px;cursor:pointer}
.smt-search-result:hover,.smt-search-result.is-active{background:var(--smt-surface-soft)}
.smt-search-result-icon{width:40px;height:40px;border-radius:11px;background:color-mix(in srgb,var(--smt-primary) 14%,var(--smt-surface));display:grid;place-items:center;font-weight:900;color:var(--smt-primary-hover)}
.smt-search-result strong{display:block}
.smt-search-result small{display:block;color:var(--smt-muted);font-size:11px;margin-top:2px}
.smt-search-result>span:last-child{color:var(--smt-muted);font-size:10px;text-transform:uppercase;font-weight:850;letter-spacing:.05em}
.smt-search-message{padding:28px;text-align:center;color:var(--smt-muted)}
.smt-timezone-dialog{padding-bottom:20px}
.smt-timezone-dialog>label{display:block;margin:18px 20px 7px;font-weight:800;font-size:12px}
.smt-timezone-dialog select{display:block;width:calc(100% - 40px);height:50px;margin:0 20px 18px;border:1px solid var(--smt-border);border-radius:12px;background:var(--smt-surface-soft);padding:0 12px;color:var(--smt-text)}
.smt-timezone-dialog>.smt-button{margin-left:20px}

/* Homepage intro */
.smt-home-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;padding-block:28px 22px}
.smt-home-intro h1{max-width:780px;margin:7px 0 9px;font-size:clamp(28px,3vw,40px);line-height:1.08;letter-spacing:-.038em}
.smt-home-intro p{max-width:760px;margin:0;color:var(--smt-muted);font-size:15px}
.smt-freshness{flex:0 0 auto;display:flex;align-items:center;gap:10px;padding:10px 13px;border:1px solid var(--smt-border);border-radius:13px;background:var(--smt-surface);box-shadow:var(--smt-shadow-sm)}
.smt-freshness>span{width:10px;height:10px;border-radius:50%;background:var(--smt-primary);box-shadow:0 0 0 5px color-mix(in srgb,var(--smt-primary) 15%,transparent)}
.smt-freshness.is-stale>span{background:var(--smt-warning)}
.smt-freshness div{display:flex;flex-direction:column;line-height:1.15}
.smt-freshness strong{font-size:11px}
.smt-freshness small{margin-top:3px;color:var(--smt-muted);font-size:10px}

/* Main grid and panels */
.smt-home-grid{display:grid;grid-template-columns:minmax(220px,250px) minmax(0,1fr) minmax(280px,320px);gap:20px;align-items:start;padding-bottom:34px}
.smt-center-column{min-width:0;display:grid;gap:20px}
.smt-sidebar{display:grid;gap:18px;min-width:0}
.smt-sticky-card{position:sticky;top:calc(var(--smt-header-height) + 18px)}
.smt-panel,.smt-section,.smt-content-card,.smt-article,.smt-route-hero{background:var(--smt-surface);border:1px solid var(--smt-border);border-radius:var(--smt-radius);box-shadow:var(--smt-shadow-sm)}
.smt-panel{padding:16px}
.smt-panel-head,.smt-section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}
.smt-panel-head h2{margin:4px 0 0;font-size:17px;line-height:1.2;letter-spacing:-.02em}
.smt-panel-head>a{color:var(--smt-primary-hover);font-size:11px;font-weight:850}
.smt-link-list{list-style:none;margin:12px 0 0;padding:0;display:grid;gap:3px}
.smt-link-list li{min-width:0}
.smt-link-list a{position:relative;min-height:45px;padding:6px 5px;display:flex;align-items:center;gap:9px;border-radius:10px;font-size:12px;font-weight:750;transition:background var(--smt-transition)}
.smt-link-list a:hover{background:var(--smt-surface-soft)}
.smt-link-list a>.smt-icon{margin-left:auto;width:15px;color:var(--smt-muted)}
.smt-team-avatar,.smt-round-badge{width:31px;height:31px;border-radius:9px;display:grid;place-items:center;flex:0 0 auto;background:color-mix(in srgb,var(--smt-primary) 12%,var(--smt-surface));color:var(--smt-primary-hover);font-size:8px;font-weight:950}
.smt-round-badge{border-radius:50%;font-size:11px}
.smt-link-list a>span:nth-child(2){min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.smt-competition-list a>span:nth-child(2){display:flex;flex-direction:column;white-space:normal}
.smt-competition-list strong{font-size:12px}
.smt-competition-list small{color:var(--smt-muted);font-size:9px;margin-top:1px}
.smt-country-flag{width:24px;display:inline-grid;place-items:center;font-size:16px}
.smt-expand-button{width:100%;margin-top:10px;min-height:40px;border:0;border-radius:10px;background:var(--smt-surface-soft);color:var(--smt-primary-hover);display:flex;align-items:center;justify-content:center;gap:5px;font-size:11px;font-weight:850;cursor:pointer}
.smt-expand-button .smt-icon{width:14px;transform:rotate(90deg);transition:transform var(--smt-transition)}
.smt-expand-button[aria-expanded="true"] .smt-icon{transform:rotate(-90deg)}
.smt-in-panel-search{margin-top:12px;height:40px;display:grid;grid-template-columns:18px 1fr;align-items:center;gap:6px;border:1px solid var(--smt-border);border-radius:10px;padding:0 10px;background:var(--smt-surface-soft)}
.smt-in-panel-search input{width:100%;height:100%;border:0;outline:0;background:transparent;color:var(--smt-text);font-size:11px}

/* Section basics */
.smt-section{padding:20px;min-width:0}
.smt-section-head{margin-bottom:16px;align-items:center}
.smt-section-head h2{margin:5px 0 4px;font-size:24px;line-height:1.12;letter-spacing:-.028em}
.smt-section-head p{margin:0;color:var(--smt-muted);font-size:12px}
.smt-section-link,.smt-panel-link{display:flex;align-items:center;justify-content:center;gap:5px;color:var(--smt-primary-hover);font-size:12px;font-weight:850}
.smt-section-link{margin-top:16px;padding-top:15px;border-top:1px solid var(--smt-border)}
.smt-panel-link{margin-top:12px;padding-top:12px;border-top:1px solid var(--smt-border)}
.smt-section-link .smt-icon,.smt-panel-link .smt-icon{width:15px}

/* Featured carousel */
.smt-featured-section{padding:0;overflow:hidden;background:linear-gradient(145deg,var(--smt-secondary),var(--smt-secondary-surface));color:#fff;border-color:rgba(255,255,255,.08);box-shadow:0 20px 45px rgba(7,20,38,.17)}
.smt-featured-section>.smt-section-head{padding:20px 20px 0}
.smt-featured-section .smt-section-head h2{color:#fff}
.smt-featured-section .smt-section-head p{color:#AFC0D2}
.smt-carousel-controls{display:flex;align-items:center;gap:8px}
.smt-carousel-controls button{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.1)}
.smt-carousel-controls span{min-width:46px;text-align:center;color:#B8C7D7;font-size:10px;font-weight:800}
.smt-featured-carousel{overflow:hidden;padding:16px 20px 20px}
.smt-featured-track{display:flex;gap:14px;transition:transform 250ms ease;will-change:transform}
.smt-featured-card{position:relative;flex:0 0:min(100%,470px);min-width:0;padding:16px;border-radius:16px;background:linear-gradient(150deg,rgba(255,255,255,.11),rgba(255,255,255,.055));border:1px solid rgba(255,255,255,.13);overflow:hidden}
.smt-featured-card::before{content:"";position:absolute;width:180px;height:180px;border-radius:50%;right:-85px;top:-100px;background:radial-gradient(circle,rgba(22,199,132,.24),transparent 68%)}
.smt-card-link{position:absolute;inset:0;z-index:1;border-radius:inherit}
.smt-featured-card button,.smt-featured-card .smt-button,.smt-match-row button{position:relative;z-index:2}
.smt-featured-top{display:flex;align-items:center;justify-content:space-between;position:relative;z-index:2}
.smt-status-pill{height:25px;padding:0 9px;border-radius:999px;display:inline-flex;align-items:center;font-size:9px;text-transform:uppercase;letter-spacing:.08em;font-weight:950;background:rgba(255,255,255,.11);color:#D5E1EC}
.smt-status-pill.is-live{background:rgba(239,68,68,.18);color:#FF9A9A;border:1px solid rgba(239,68,68,.25)}
.smt-status-pill.is-warning{background:rgba(245,158,11,.17);color:#FFD58B}
.smt-favourite-button{width:34px;height:34px;border-radius:10px;border:0;background:transparent;color:var(--smt-muted);display:grid;place-items:center;cursor:pointer}
.smt-featured-card .smt-favourite-button{color:#B6C4D3;background:rgba(255,255,255,.08)}
.smt-favourite-button.is-active{color:#FFC940!important;background:rgba(255,201,64,.13)!important}
.smt-favourite-button.is-active .smt-icon{fill:currentColor}
.smt-league-line{display:flex;align-items:center;gap:9px;margin-top:13px;position:relative;z-index:2}
.smt-league-line .smt-round-badge{background:rgba(22,199,132,.18);color:#64EAB7}
.smt-league-line div{display:flex;flex-direction:column}
.smt-league-line strong{font-size:12px}
.smt-league-line small{color:#AFC0D2;font-size:9px;margin-top:1px}
.smt-featured-teams{display:grid;grid-template-columns:minmax(0,1fr) 90px minmax(0,1fr);align-items:center;gap:9px;margin:20px 0 14px;position:relative;z-index:2}
.smt-featured-teams>div:not(.smt-featured-score){display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;min-width:0}
.smt-featured-teams>div>strong{font-size:13px;line-height:1.2;max-width:100%;overflow:hidden;text-overflow:ellipsis}
.smt-crest{width:29px;height:29px;border-radius:50%;display:grid;place-items:center;flex:0 0 auto;background:var(--smt-surface-soft);border:1px solid var(--smt-border);color:var(--smt-text);font-size:7px;font-weight:950;letter-spacing:-.04em}
.smt-crest-lg{width:50px;height:50px;border:2px solid rgba(255,255,255,.13);background:rgba(255,255,255,.1);color:#fff;font-size:10px;box-shadow:0 8px 20px rgba(0,0,0,.16)}
.smt-featured-score{text-align:center}
.smt-featured-score strong{display:flex;align-items:center;justify-content:center;gap:8px;font-size:27px;line-height:1;font-variant-numeric:tabular-nums}
.smt-featured-score i{font-style:normal;color:#7990A8;font-size:18px}
.smt-featured-score small{display:block;margin-top:7px;color:#B8C7D7;font-size:10px;font-weight:750;min-height:16px}
.smt-featured-score .smt-vs{font-size:17px;color:#AFC0D2}
.smt-featured-event{min-height:40px;display:flex;align-items:center;gap:9px;padding:9px 11px;border-radius:10px;background:rgba(255,255,255,.055);color:#C5D2DF;position:relative;z-index:2}
.smt-featured-event p{margin:0;font-size:10px}
.smt-featured-event .smt-icon{width:15px}
.smt-pulse{width:7px;height:7px;border-radius:50%;background:var(--smt-live);box-shadow:0 0 0 4px rgba(239,68,68,.14);flex:0 0 auto}
.smt-featured-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:14px;position:relative;z-index:2}
.smt-featured-actions>span:first-child{color:#91A5B9;font-size:9px}
.smt-featured-actions .smt-button{min-height:38px;padding:8px 12px;font-size:10px}
.smt-featured-actions .smt-icon{width:14px}

/* Live section */
.smt-live-eyebrow{display:flex;align-items:center;gap:7px;color:var(--smt-live)}
.smt-live-eyebrow i{width:7px;height:7px;border-radius:50%;background:var(--smt-live);box-shadow:0 0 0 5px rgba(239,68,68,.1);animation:smtPulse 1.8s infinite}
@keyframes smtPulse{50%{box-shadow:0 0 0 8px rgba(239,68,68,0)}}
.smt-filter-bar{display:flex;gap:7px;overflow-x:auto;scrollbar-width:none;margin-bottom:16px;padding-bottom:1px}
.smt-filter-bar::-webkit-scrollbar{display:none}
.smt-filter-bar button{flex:0 0 auto;min-height:36px;padding:0 12px;border-radius:999px;background:var(--smt-surface-soft);border:1px solid var(--smt-border);font-size:10px;font-weight:850;white-space:nowrap}
.smt-filter-bar button:hover,.smt-filter-bar button.is-active{background:var(--smt-secondary);border-color:var(--smt-secondary);color:#fff}
.smt-live-grid{display:grid;grid-template-columns:1fr 1fr;align-items:start;gap:13px}
.smt-league-group{border:1px solid var(--smt-border);border-radius:13px;overflow:hidden;background:var(--smt-surface)}
.smt-league-group>header{min-height:58px;padding:9px 11px;display:flex;align-items:center;justify-content:space-between;background:var(--smt-surface-soft);border-bottom:1px solid var(--smt-border)}
.smt-league-group>header>a{display:flex;align-items:center;gap:7px;min-width:0;position:relative;z-index:2}
.smt-league-group>header>a>span:nth-child(3){display:flex;flex-direction:column;min-width:0}
.smt-league-group>header strong{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.smt-league-group>header small{font-size:8px;color:var(--smt-muted);margin-top:2px}
.smt-league-group>header .smt-round-badge{width:28px;height:28px}
.smt-league-group>header>div{display:flex;align-items:center}
.smt-collapse-group{width:30px;height:30px;border:0;border-radius:8px;background:transparent;color:var(--smt-muted);cursor:pointer}
.smt-collapse-group .smt-icon{width:15px;transform:rotate(90deg);transition:transform var(--smt-transition)}
.smt-collapse-group[aria-expanded="false"] .smt-icon{transform:rotate(-90deg)}
.smt-league-group.is-collapsed .smt-league-matches{display:none}
.smt-match-row{position:relative;display:grid;grid-template-columns:66px minmax(0,1fr) 54px;gap:9px;align-items:center;min-height:79px;padding:9px 8px;border-bottom:1px solid var(--smt-border);transition:background var(--smt-transition)}
.smt-match-row:last-child{border-bottom:0}
.smt-match-row:hover{background:color-mix(in srgb,var(--smt-primary) 4%,var(--smt-surface))}
.smt-match-row.is-warning{background:color-mix(in srgb,var(--smt-warning) 5%,var(--smt-surface))}
.smt-match-time{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;line-height:1.1;border-right:1px solid var(--smt-border);min-height:51px}
.smt-match-time strong{font-size:9px;color:var(--smt-muted);max-width:60px}
.smt-match-time strong.is-live{color:var(--smt-live)}
.smt-match-time strong.is-warning{color:var(--smt-warning)}
.smt-match-time small{margin-top:5px;color:var(--smt-muted);font-size:8px}
.smt-match-teams{display:grid;gap:6px;min-width:0}
.smt-match-teams>div{display:grid;grid-template-columns:27px minmax(0,1fr) auto auto;align-items:center;gap:7px;min-width:0}
.smt-match-teams>div>span:nth-child(2){font-size:11px;font-weight:750;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.smt-match-teams b{font-size:14px;font-variant-numeric:tabular-nums}
.smt-red-card{display:inline-grid;place-items:center;width:11px;height:15px;background:var(--smt-live);color:#fff;border-radius:2px;font-size:7px;font-style:normal}
.smt-match-row-actions{display:flex;align-items:center;justify-content:flex-end;gap:1px;color:var(--smt-muted)}
.smt-match-row-actions>.smt-icon{width:15px}
.smt-match-row-actions .smt-favourite-button{width:31px;height:31px}
.smt-empty-state{text-align:center;padding:42px 20px;border:1px dashed var(--smt-border);border-radius:14px;background:var(--smt-surface-soft)}
.smt-empty-icon{width:58px;height:58px;margin:0 auto 14px;border-radius:18px;display:grid;place-items:center;background:color-mix(in srgb,var(--smt-primary) 12%,var(--smt-surface));color:var(--smt-primary-hover)}
.smt-empty-icon .smt-icon{width:29px;height:29px}
.smt-empty-state h3,.smt-empty-state h1{margin:0 0 7px}
.smt-empty-state p{max-width:520px;margin:0 auto 18px;color:var(--smt-muted)}

/* Fixtures */
.smt-match-count{padding:7px 10px;border-radius:999px;background:var(--smt-surface-soft);border:1px solid var(--smt-border);font-size:10px;font-weight:850;color:var(--smt-muted)}
.smt-date-nav{display:grid;grid-template-columns:42px minmax(0,1fr) 42px 42px;align-items:center;gap:7px;padding:9px;background:var(--smt-surface-soft);border:1px solid var(--smt-border);border-radius:13px;margin-bottom:12px}
.smt-date-nav>button,.smt-date-picker{height:40px;border:1px solid var(--smt-border);border-radius:10px;background:var(--smt-surface);display:grid;place-items:center;cursor:pointer}
.smt-date-nav .smt-date-today{display:flex;flex-direction:column;line-height:1.1}
.smt-date-today span{font-size:8px;color:var(--smt-muted);text-transform:uppercase;font-weight:900;letter-spacing:.08em}
.smt-date-today strong{font-size:11px;margin-top:3px}
.smt-date-picker{position:relative;overflow:hidden}
.smt-date-picker input{position:absolute;inset:0;opacity:0;cursor:pointer}
.smt-fixture-grid{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.smt-fixture-card{border:1px solid var(--smt-border);border-radius:12px;overflow:hidden;background:var(--smt-surface)}
.smt-fixture-league{display:block;padding:7px 10px;background:var(--smt-surface-soft);border-bottom:1px solid var(--smt-border);color:var(--smt-muted);font-size:8px;text-transform:uppercase;letter-spacing:.05em;font-weight:850;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.smt-match-row.is-compact{min-height:73px;border-bottom:0;grid-template-columns:58px minmax(0,1fr) 42px}

/* Right sidebar */
.smt-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;margin-top:12px;padding:4px;border-radius:10px;background:var(--smt-surface-soft)}
.smt-tabs button{height:33px;border-radius:8px;background:transparent;font-size:9px;font-weight:850}
.smt-tabs button.is-active{background:var(--smt-surface);box-shadow:var(--smt-shadow-sm);color:var(--smt-primary-hover)}
.smt-compact-results{display:grid;margin-top:10px}
.smt-compact-result{padding:10px 3px;border-bottom:1px solid var(--smt-border);position:relative}
.smt-compact-result small{display:block;color:var(--smt-muted);font-size:8px;margin-bottom:5px}
.smt-compact-result>div{display:grid;grid-template-columns:minmax(0,1fr) 22px;gap:5px;align-items:center;margin-top:3px}
.smt-compact-result span{font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.smt-compact-result strong{text-align:center;font-size:12px}
.smt-empty-mini{padding:22px 7px;text-align:center;color:var(--smt-muted);font-size:10px}
.smt-select-row{display:grid;grid-template-columns:1fr 75px;gap:7px;margin:12px 0 7px}
.smt-select-row label{display:grid;gap:4px}
.smt-select-row label>span{font-size:8px;text-transform:uppercase;color:var(--smt-muted);font-weight:850}
.smt-select-row select,.smt-full-select{height:36px;border:1px solid var(--smt-border);border-radius:9px;background:var(--smt-surface-soft);color:var(--smt-text);padding:0 7px;font-size:9px;min-width:0}
.smt-full-select{width:100%;margin:12px 0 5px}
.smt-ranking-list,.smt-stat-list{list-style:none;margin:0;padding:0;display:grid}
.smt-ranking-list li{display:grid;grid-template-columns:20px 31px minmax(0,1fr) 25px;gap:6px;align-items:center;padding:9px 0;border-bottom:1px solid var(--smt-border)}
.smt-rank{font-size:10px;font-weight:900;color:var(--smt-muted);text-align:center}
.smt-player-avatar{width:31px;height:31px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--smt-secondary-surface),#25476D);color:#fff;font-size:8px;font-weight:900}
.smt-ranking-list a,.smt-stat-list a{min-width:0;display:flex;flex-direction:column}
.smt-ranking-list strong,.smt-stat-list strong{font-size:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.smt-ranking-list small,.smt-stat-list small{font-size:8px;color:var(--smt-muted);margin-top:1px}
.smt-ranking-list b{font-size:14px;text-align:center;color:var(--smt-primary-hover)}
.smt-stat-list li{display:grid;grid-template-columns:24px minmax(0,1fr) auto;gap:7px;align-items:center;padding:9px 0;border-bottom:1px solid var(--smt-border)}
.smt-stat-list>li>span{width:24px;height:24px;border-radius:7px;background:var(--smt-surface-soft);display:grid;place-items:center;font-size:9px;font-weight:900}
.smt-stat-list b{font-size:9px;color:var(--smt-primary-hover);white-space:nowrap}

/* News */
.smt-news-section{padding:52px 0;background:linear-gradient(180deg,transparent,var(--smt-surface-soft))}
.smt-news-section .smt-section-head h2{font-size:30px}
.smt-news-filters{display:flex;gap:7px;overflow:auto;margin-bottom:16px;scrollbar-width:none}
.smt-news-filters::-webkit-scrollbar{display:none}
.smt-news-filters button{flex:0 0 auto;min-height:36px;padding:0 13px;border-radius:999px;border:1px solid var(--smt-border);background:var(--smt-surface);font-size:10px;font-weight:850}
.smt-news-filters button.is-active{background:var(--smt-secondary);color:#fff;border-color:var(--smt-secondary)}
.smt-news-layout{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:16px}
.smt-news-featured{position:relative;min-height:440px;border-radius:20px;overflow:hidden;background:var(--smt-secondary);color:#fff;box-shadow:var(--smt-shadow)}
.smt-news-image{position:absolute;inset:0;background:linear-gradient(135deg,#173451,#081728);display:grid;place-items:center}
.smt-news-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 22%,rgba(4,12,22,.92) 100%)}
.smt-news-image img{width:100%;height:100%;object-fit:cover}
.smt-news-image>span{width:120px;height:120px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.06);color:rgba(255,255,255,.25)}
.smt-news-image .smt-icon{width:65px;height:65px}
.smt-news-content{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px}
.smt-news-category{display:inline-block;color:var(--smt-primary);font-size:9px;font-weight:950;letter-spacing:.1em;text-transform:uppercase}
.smt-news-content h3{max-width:680px;margin:7px 0 9px;font-size:28px;line-height:1.12;letter-spacing:-.03em}
.smt-news-content p{max-width:640px;margin:0;color:#C2CFDC;font-size:12px}
.smt-news-content>div{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px;color:#9FB0C2;font-size:9px}
.smt-news-secondary{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.smt-news-card{position:relative;min-height:210px;border:1px solid var(--smt-border);border-radius:16px;overflow:hidden;background:var(--smt-surface);box-shadow:var(--smt-shadow-sm)}
.smt-news-thumb{height:112px;background:linear-gradient(135deg,var(--smt-secondary-surface),#22476D);display:grid;place-items:center;color:rgba(255,255,255,.3);overflow:hidden}
.smt-news-thumb img{width:100%;height:100%;object-fit:cover}
.smt-news-thumb .smt-icon{width:34px;height:34px}
.smt-news-card>div:last-child{padding:11px}
.smt-news-card h3{margin:5px 0 8px;font-size:13px;line-height:1.25;letter-spacing:-.015em}
.smt-news-card small{color:var(--smt-muted);font-size:9px}

/* Home content */
.smt-home-content{padding:0 0 54px}
.smt-content-card{padding:28px;position:relative}
.smt-content-preview{max-width:980px;margin:auto}
.smt-content-preview h2{font-size:27px;margin:0 0 10px;letter-spacing:-.025em}
.smt-content-preview h3{font-size:18px;margin:24px 0 7px}
.smt-content-preview p{color:var(--smt-muted);margin:0 0 10px}
.smt-readmore{display:flex;align-items:center;justify-content:center;gap:5px;margin:20px auto 0;min-height:42px;border:0;background:var(--smt-surface-soft);color:var(--smt-primary-hover);border-radius:10px;padding:0 16px;font-weight:850;cursor:pointer}
.smt-readmore .smt-icon{width:15px;transform:rotate(90deg)}
.smt-readmore[aria-expanded="true"] .smt-icon{transform:rotate(-90deg)}

/* Footer */
.smt-footer{background:var(--smt-secondary);color:#DCE7F1;padding:46px 0 22px}
.smt-footer .smt-brand-copy strong{color:#fff}
.smt-footer .smt-brand-copy small{color:#8FA5BA}
.smt-footer-top{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-bottom:28px;border-bottom:1px solid rgba(255,255,255,.09)}
.smt-footer-brand{max-width:560px}
.smt-footer-brand p{margin:13px 0 0;color:#9FB1C3;font-size:12px}
.smt-footer-settings{display:flex;gap:8px}
.smt-footer-settings button{min-height:42px;padding:0 13px;border-radius:11px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.09);color:#DCE7F1;font-size:11px;font-weight:800}
.smt-footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;padding:34px 0}
.smt-footer-column{min-width:0}
.smt-footer-column summary{list-style:none;cursor:default}
.smt-footer-column summary::-webkit-details-marker{display:none}
.smt-footer-column h2{position:relative;margin:0 0 17px;padding-bottom:10px;font-size:14px;color:#fff}
.smt-footer-column h2::after{content:"";position:absolute;left:0;bottom:0;width:32px;height:3px;border-radius:3px;background:var(--smt-primary)}
.smt-footer-column ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.smt-footer-column a{color:#9FB1C3;font-size:11px;transition:color var(--smt-transition),padding var(--smt-transition)}
.smt-footer-column a:hover{color:#fff;padding-left:3px}
.smt-footer-bottom{padding-top:18px;border-top:1px solid rgba(255,255,255,.09);display:flex;justify-content:space-between;gap:30px;color:#7F95AA;font-size:9px}
.smt-footer-bottom p{margin:0;max-width:670px}
.smt-mobile-bottom-nav{display:none}

/* Content pages */
.smt-content-main{padding:30px 0 60px;min-height:55vh}
.smt-breadcrumbs{margin-bottom:20px}
.smt-breadcrumbs ol{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:7px;flex-wrap:wrap;color:var(--smt-muted);font-size:10px}
.smt-breadcrumbs li{display:flex;align-items:center;gap:7px}
.smt-breadcrumbs li:not(:last-child)::after{content:"/";color:var(--smt-border)}
.smt-breadcrumbs a:hover{color:var(--smt-primary-hover)}
.smt-page-header{margin-bottom:24px}
.smt-page-header h1{margin:7px 0 0;font-size:36px;line-height:1.1;letter-spacing:-.035em}
.smt-post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.smt-post-card{position:relative;border:1px solid var(--smt-border);border-radius:16px;overflow:hidden;background:var(--smt-surface);box-shadow:var(--smt-shadow-sm)}
.smt-post-image{height:190px;background:linear-gradient(135deg,var(--smt-secondary-surface),#284F77);display:grid;place-items:center;color:rgba(255,255,255,.3);overflow:hidden}
.smt-post-image img{width:100%;height:100%;object-fit:cover}
.smt-post-image .smt-icon{width:48px;height:48px}
.smt-post-card>div:last-child{padding:17px}
.smt-post-card h2{margin:6px 0 8px;font-size:19px;line-height:1.2}
.smt-post-card p{margin:0 0 12px;color:var(--smt-muted);font-size:12px}
.smt-post-card small{color:var(--smt-muted);font-size:10px}
.smt-article{padding:clamp(22px,4vw,48px)}
.smt-article>header h1{margin:8px 0 14px;font-size:clamp(32px,5vw,48px);line-height:1.08;letter-spacing:-.04em}
.smt-article-meta{display:flex;gap:12px;flex-wrap:wrap;color:var(--smt-muted);font-size:11px}
.smt-single-featured{margin:24px 0 0;border-radius:16px;overflow:hidden}
.smt-entry-content{font-size:16px;line-height:1.78}
.smt-entry-content h2{margin-top:34px;font-size:28px;line-height:1.2}
.smt-entry-content h3{margin-top:28px;font-size:21px}
.smt-entry-content p,.smt-entry-content ul,.smt-entry-content ol{color:color-mix(in srgb,var(--smt-text) 84%,var(--smt-muted))}
.smt-entry-content a{color:var(--smt-primary-hover);text-decoration:underline;text-underline-offset:3px}
.smt-article-footer{margin-top:32px;padding-top:22px;border-top:1px solid var(--smt-border)}
.smt-404{padding:70px 30px}
.smt-404 h1{font-size:36px}
.smt-404>div{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}
.smt-route-hero{padding:28px;display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:20px}
.smt-route-hero h1{margin:6px 0 8px;font-size:38px;letter-spacing:-.035em}
.smt-route-hero p{max-width:760px;color:var(--smt-muted);margin:0}
.smt-route-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:20px;align-items:start}
.smt-route-aside{position:sticky;top:calc(var(--smt-header-height) + 18px)}
.smt-route-aside h2{margin:0;font-size:20px}

/* Motion safety */
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

/* Large rail support */
@media (min-width:1850px){.smt-ad-rail{display:block}.smt-container{width:min(calc(100% - 350px),var(--smt-site-max-width))}}

/* Desktop adjustments */
@media (max-width:1535px){
  .smt-home-grid{grid-template-columns:minmax(205px,225px) minmax(0,1fr) minmax(270px,295px);gap:16px}
  .smt-desktop-nav>ul>li>a{padding-inline:8px;font-size:13px}
  .smt-featured-card{flex-basis:min(100%,430px)}
}

@media (max-width:1279px){
  .smt-desktop-nav{display:none}.smt-menu-toggle{display:inline-flex}.smt-header-inner{gap:12px}.smt-brand{margin-right:auto}.smt-header-actions{margin-left:0}
  .smt-home-grid{grid-template-columns:220px minmax(0,1fr)}
  .smt-right-sidebar{grid-column:1/-1;grid-template-columns:repeat(3,1fr)}
  .smt-right-sidebar .smt-panel{min-width:0}
  .smt-sticky-card{top:calc(var(--smt-header-height) + 14px)}
  .smt-post-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:1023px){
  :root{--smt-header-height:66px}
  .smt-top-ad-grid{grid-template-columns:1fr 1fr}.smt-top-ad-message{display:none}
  .smt-home-grid{grid-template-columns:1fr}
  .smt-left-sidebar{order:2;grid-template-columns:repeat(3,1fr)}
  .smt-center-column{order:1}.smt-right-sidebar{order:3;grid-template-columns:repeat(3,1fr)}
  .smt-sticky-card{position:static}
  .smt-live-grid,.smt-fixture-grid{grid-template-columns:1fr 1fr}
  .smt-news-layout{grid-template-columns:1fr}.smt-news-featured{min-height:390px}.smt-news-secondary{grid-template-columns:repeat(4,1fr)}
  .smt-news-card{min-height:215px}
  .smt-footer-grid{grid-template-columns:repeat(2,1fr)}
  .smt-route-layout{grid-template-columns:1fr}.smt-route-aside{position:static}
}

@media (max-width:767px){
  body{padding-bottom:67px}.smt-container{width:min(calc(100% - 22px),var(--smt-site-max-width))}
  .smt-top-ad-grid{display:block;min-height:0;padding-block:6px}.smt-ad-desktop{display:none}.smt-ad-mobile{display:flex}.smt-top-ad-message{display:none}
  .smt-header-inner{height:var(--smt-header-height)}.smt-header-actions .smt-timezone-button{display:none}.smt-brand-copy small{display:none}.smt-brand-copy strong{font-size:15px}.smt-brand-mark{width:36px;height:36px;border-radius:11px}
  .smt-header-actions{gap:5px}.smt-header-actions .smt-icon-button{width:40px;height:40px}.smt-menu-toggle{width:40px;height:40px}
  .smt-home-intro{display:block;padding-block:22px 17px}.smt-home-intro h1{font-size:29px}.smt-home-intro p{font-size:13px}.smt-freshness{margin-top:14px;display:inline-flex}
  .smt-home-grid{gap:14px;padding-bottom:24px}.smt-center-column{gap:14px}.smt-left-sidebar,.smt-right-sidebar{grid-template-columns:1fr;gap:12px}
  .smt-left-sidebar{order:3}.smt-right-sidebar{order:2}
  .smt-section{padding:15px}.smt-section-head{margin-bottom:13px}.smt-section-head h2{font-size:21px}.smt-section-head p{font-size:11px}
  .smt-featured-section>.smt-section-head{padding:16px 15px 0}.smt-featured-carousel{padding:13px 15px 16px}.smt-featured-card{flex-basis:100%;padding:14px}.smt-featured-teams{grid-template-columns:minmax(0,1fr) 72px minmax(0,1fr);margin-top:17px}.smt-crest-lg{width:46px;height:46px}.smt-featured-score strong{font-size:23px}.smt-featured-actions>span:first-child{display:none}.smt-featured-actions .smt-button{margin-left:auto}
  .smt-section-head-stack-mobile{align-items:flex-start}.smt-section-head-stack-mobile .smt-button{padding:9px 11px;font-size:10px}
  .smt-live-grid,.smt-fixture-grid{grid-template-columns:1fr}.smt-match-row{grid-template-columns:58px minmax(0,1fr) 46px;padding-inline:5px}.smt-match-time strong{font-size:8px}.smt-match-teams>div>span:nth-child(2){font-size:10px}
  .smt-news-section{padding:38px 0}.smt-news-section .smt-section-head h2{font-size:25px}.smt-news-featured{min-height:370px}.smt-news-content{padding:20px}.smt-news-content h3{font-size:23px}.smt-news-secondary{grid-template-columns:1fr 1fr}.smt-news-card{min-height:205px}
  .smt-content-card{padding:21px}.smt-content-preview h2{font-size:23px}
  .smt-footer{padding-top:32px}.smt-footer-top{display:block}.smt-footer-settings{margin-top:18px}.smt-footer-grid{display:block;padding:22px 0}.smt-footer-column{border-bottom:1px solid rgba(255,255,255,.08)}.smt-footer-column summary{display:flex;align-items:center;min-height:50px;cursor:pointer}.smt-footer-column summary::after{content:"+";margin-left:auto;color:#7F95AA;font-size:20px}.smt-footer-column[open] summary::after{content:"−"}.smt-footer-column h2{margin:0;padding:0;font-size:13px}.smt-footer-column h2::after{display:none}.smt-footer-column ul{padding:0 0 18px}.smt-footer-bottom{display:block}.smt-footer-bottom p+ p{margin-top:9px}
  .smt-mobile-bottom-nav{position:fixed;left:0;right:0;bottom:0;z-index:90;height:67px;padding:6px 8px calc(6px + env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(5,1fr);background:color-mix(in srgb,var(--smt-surface) 95%,transparent);border-top:1px solid var(--smt-border);backdrop-filter:blur(16px)}
  .smt-mobile-bottom-nav a,.smt-mobile-bottom-nav button{border:0;background:transparent;color:var(--smt-muted);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;font-size:9px;font-weight:750;cursor:pointer}.smt-mobile-bottom-nav .smt-icon{width:20px;height:20px}.smt-mobile-bottom-nav a:hover,.smt-mobile-bottom-nav button:hover{color:var(--smt-primary-hover)}
  .smt-page-header h1{font-size:30px}.smt-post-grid{grid-template-columns:1fr}.smt-article{padding:22px}.smt-article>header h1{font-size:33px}.smt-entry-content{font-size:15px}.smt-route-hero{display:block;padding:22px}.smt-route-hero h1{font-size:31px}.smt-route-hero .smt-freshness{margin-top:18px}
}

@media (max-width:479px){
  .smt-container{width:min(calc(100% - 16px),var(--smt-site-max-width))}
  .smt-brand-copy strong{max-width:138px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .smt-header-actions .smt-icon-button:first-of-type{display:none}
  .smt-home-intro h1{font-size:26px}
  .smt-carousel-controls span{display:none}.smt-carousel-controls button{width:35px;height:35px}
  .smt-featured-teams{grid-template-columns:minmax(0,1fr) 62px minmax(0,1fr);gap:5px}.smt-featured-teams>div>strong{font-size:11px}.smt-crest-lg{width:43px;height:43px}.smt-featured-score strong{font-size:21px;gap:5px}
  .smt-match-row{grid-template-columns:52px minmax(0,1fr) 36px;gap:5px}.smt-match-row-actions>.smt-icon{display:none}.smt-match-row-actions .smt-favourite-button{width:34px}.smt-match-teams>div{grid-template-columns:25px minmax(0,1fr) auto auto;gap:5px}.smt-crest{width:25px;height:25px}
  .smt-section-head-stack-mobile{display:block}.smt-section-head-stack-mobile .smt-button{margin-top:10px}
  .smt-date-nav{grid-template-columns:38px minmax(0,1fr) 38px 38px}.smt-date-nav>button,.smt-date-picker{height:38px}
  .smt-news-secondary{grid-template-columns:1fr}.smt-news-card{display:grid;grid-template-columns:112px 1fr;min-height:112px}.smt-news-thumb{height:100%}
  .smt-footer-settings{display:grid;grid-template-columns:1fr 1fr}
}

/* ================================================================
   Soccer Match Today Premium 2.0 overrides
   One match per featured slide + two-column SEO content presentation.
   ================================================================ */
.smt-featured-premium{border-radius:var(--smt-radius,18px)}
.smt-featured-premium .smt-featured-carousel{padding:18px 20px 22px}
.smt-featured-premium .smt-featured-track{gap:18px;align-items:stretch}
.smt-featured-premium .smt-featured-single{flex:0 0 100%;width:100%;min-height:390px;padding:0;border-radius:calc(var(--smt-radius,18px) - 2px);background:linear-gradient(145deg,rgba(255,255,255,.115),rgba(255,255,255,.045));display:flex;flex-direction:column;isolation:isolate}
.smt-featured-premium .smt-featured-single::before{width:420px;height:420px;right:-190px;top:-250px;background:radial-gradient(circle,rgba(22,199,132,.28),transparent 66%)}
.smt-featured-premium .smt-featured-single::after{content:"";position:absolute;width:330px;height:330px;border-radius:50%;left:-220px;bottom:-250px;background:radial-gradient(circle,rgba(29,161,242,.18),transparent 68%);z-index:-1}
.smt-featured-banner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 22px;border-bottom:1px solid rgba(255,255,255,.09);position:relative;z-index:2}
.smt-featured-banner .smt-league-line{margin:0;display:flex;align-items:center;gap:12px}
.smt-featured-banner .smt-league-line img{width:42px;height:42px;object-fit:contain;border-radius:10px;background:rgba(255,255,255,.08);padding:5px}
.smt-featured-banner .smt-league-line strong{font-size:15px;display:block;color:#fff}
.smt-featured-banner .smt-league-line small{display:block;margin-top:3px;color:#aebfd0;font-size:11px}
.smt-featured-top-actions{display:flex;align-items:center;gap:10px}
.smt-featured-top-actions .smt-favourite-button{position:relative;z-index:3;background:rgba(255,255,255,.08);color:#c9d6e2;border:1px solid rgba(255,255,255,.08)}
.smt-status-pill.is-stale{background:rgba(245,158,11,.14);color:#ffd48a;border-color:rgba(245,158,11,.3)}
.smt-featured-main{display:grid;grid-template-columns:minmax(0,1fr) minmax(180px,240px) minmax(0,1fr);align-items:center;gap:28px;padding:28px 46px 25px;min-height:220px;position:relative;z-index:2}
.smt-featured-team{display:flex;flex-direction:column;align-items:center;text-align:center;min-width:0}
.smt-featured-team strong{font-size:22px;line-height:1.2;color:#fff;margin-top:13px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.smt-featured-team small{margin-top:5px;color:#8fa5ba;font-size:10px;text-transform:uppercase;letter-spacing:.1em;font-weight:800}
.smt-crest-xl,.smt-team-logo-xl{width:84px;height:84px;flex:0 0 84px;border-radius:50%;display:grid;place-items:center;object-fit:contain}
.smt-crest-xl{font-size:20px;background:linear-gradient(145deg,rgba(22,199,132,.27),rgba(29,161,242,.14));border:3px solid rgba(255,255,255,.17);color:#fff;box-shadow:0 12px 28px rgba(0,0,0,.16)}
.smt-team-logo-xl{padding:8px;background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.13)}
.smt-featured-centre{text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}
.smt-featured-score-large{display:flex;align-items:center;justify-content:center;gap:18px;font-variant-numeric:tabular-nums}
.smt-featured-score-large strong{font-size:52px;line-height:.95;color:#fff;letter-spacing:-.04em}
.smt-featured-score-large span{font-size:28px;color:#728ba4}
.smt-featured-vs{font-size:26px;font-weight:900;letter-spacing:.06em;color:#aabdd0}
.smt-featured-kickoff{margin-top:13px;min-height:22px;color:#d5e1ec;font-size:13px;font-weight:800}
.smt-featured-status-long{margin-top:5px;color:#8fa6bb;font-size:11px}
.smt-featured-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:auto;padding:16px 22px;background:rgba(3,12,24,.23);border-top:1px solid rgba(255,255,255,.075);position:relative;z-index:2}
.smt-featured-facts{display:flex;align-items:center;gap:22px;min-width:0}
.smt-featured-facts>span{display:grid;grid-template-columns:18px auto;grid-template-rows:auto auto;column-gap:8px;min-width:0;color:#9bb0c3}
.smt-featured-facts .smt-icon{grid-row:1/3;width:16px;align-self:center}
.smt-featured-facts small{font-size:9px;text-transform:uppercase;letter-spacing:.08em;color:#7790a7;font-weight:800}
.smt-featured-facts strong{font-size:11px;color:#d4e0eb;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:220px}
.smt-featured-event-inline .smt-pulse{grid-row:1/3;align-self:center}
.smt-featured-button{position:relative;z-index:3;min-height:44px;padding:11px 17px;font-size:11px;white-space:nowrap}
.smt-featured-empty{display:flex;align-items:center;gap:18px;margin:18px 20px 22px;padding:28px;border:1px dashed rgba(255,255,255,.18);border-radius:14px;background:rgba(255,255,255,.045)}
.smt-featured-empty-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:15px;background:rgba(22,199,132,.13);color:#4be1aa}.smt-featured-empty-icon .smt-icon{width:26px}
.smt-featured-empty strong{font-size:16px}.smt-featured-empty p{margin:5px 0 0;color:#aebfd0;font-size:12px}

.smt-content-card-premium{padding:34px 38px 28px;border-radius:var(--smt-radius,18px);position:relative;overflow:hidden}
.smt-content-card-premium::before{content:"";position:absolute;right:-120px;top:-160px;width:330px;height:330px;border-radius:50%;background:radial-gradient(circle,rgba(22,199,132,.08),transparent 68%);pointer-events:none}
.smt-content-heading{display:grid;grid-template-columns:minmax(280px,.75fr) minmax(0,1.25fr);align-items:end;gap:34px;padding-bottom:22px;margin-bottom:22px;border-bottom:1px solid var(--smt-border)}
.smt-content-heading .smt-eyebrow{grid-column:1/-1;margin-bottom:-22px}
.smt-content-heading h2{font-size:26px;line-height:1.18;margin:0;color:var(--smt-text)}
.smt-content-heading p{font-size:var(--smt-content-font-size,14px);line-height:1.65;color:var(--smt-muted);margin:0}
.smt-content-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 34px}
.smt-content-extra{grid-column:1/-1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 34px}
.smt-content-extra[hidden]{display:none!important}
.smt-content-column{position:relative;padding:18px 18px 18px 54px;border-radius:14px;background:linear-gradient(145deg,color-mix(in srgb,var(--smt-primary) 5%,transparent),transparent);border:1px solid color-mix(in srgb,var(--smt-border) 82%,transparent)}
.smt-content-number{position:absolute;left:16px;top:18px;display:grid;place-items:center;width:28px;height:28px;border-radius:9px;background:color-mix(in srgb,var(--smt-primary) 13%,transparent);color:var(--smt-primary);font-size:10px;font-weight:900}
.smt-content-column h3{font-size:16px;line-height:1.35;margin:0 0 8px;color:var(--smt-text)}
.smt-content-column p{font-size:var(--smt-content-font-size,14px);line-height:1.72;color:var(--smt-muted);margin:0}
.smt-content-card-premium .smt-readmore{margin:22px auto 0;min-height:42px;padding:9px 16px;border-radius:10px}

@media(max-width:1023px){
  .smt-featured-main{grid-template-columns:minmax(0,1fr) minmax(150px,190px) minmax(0,1fr);padding:26px 28px;gap:16px}
  .smt-featured-team strong{font-size:18px}.smt-featured-score-large strong{font-size:44px}
  .smt-featured-facts>span:nth-child(n+2){display:none}
  .smt-content-heading{grid-template-columns:1fr;gap:8px}.smt-content-heading .smt-eyebrow{grid-column:auto;margin-bottom:2px}
}
@media(max-width:767px){
  .smt-featured-premium .smt-featured-carousel{padding:14px 14px 16px}
  .smt-featured-premium .smt-featured-single{min-height:410px}
  .smt-featured-banner{padding:14px 15px}.smt-featured-banner .smt-league-line strong{font-size:13px}.smt-featured-banner .smt-league-line small{font-size:9px}
  .smt-featured-main{grid-template-columns:minmax(0,1fr) 92px minmax(0,1fr);padding:28px 12px 24px;gap:8px}
  .smt-crest-xl,.smt-team-logo-xl{width:62px;height:62px;flex-basis:62px}.smt-featured-team strong{font-size:14px;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.smt-featured-team small{font-size:8px}
  .smt-featured-score-large{gap:8px}.smt-featured-score-large strong{font-size:34px}.smt-featured-score-large span{font-size:20px}.smt-featured-vs{font-size:21px}.smt-featured-kickoff{font-size:10px;line-height:1.45}
  .smt-featured-footer{padding:13px 15px}.smt-featured-facts>span{display:grid!important}.smt-featured-facts>span:nth-child(n+2){display:none!important}.smt-featured-button{min-height:40px;padding:9px 12px;font-size:9px}
  .smt-content-card-premium{padding:25px 18px 22px}.smt-content-heading h2{font-size:23px}.smt-content-grid,.smt-content-extra{grid-template-columns:1fr;gap:13px}.smt-content-column{padding:16px 15px 16px 50px}.smt-content-column h3{font-size:15px}.smt-content-column p,.smt-content-heading p{font-size:13px;line-height:1.65}
}
@media(max-width:420px){
  .smt-featured-banner .smt-round-badge,.smt-featured-banner .smt-league-line img{width:35px;height:35px}
  .smt-featured-main{grid-template-columns:minmax(0,1fr) 76px minmax(0,1fr);padding-inline:8px}.smt-crest-xl,.smt-team-logo-xl{width:54px;height:54px;flex-basis:54px}.smt-featured-team strong{font-size:12px}.smt-featured-score-large strong{font-size:29px}.smt-featured-kickoff{font-size:9px}.smt-featured-footer .smt-button .smt-icon{display:none}
}

/* Premium density option. */
.smt-density-compact .smt-match-row{min-height:58px;padding-block:8px}
.smt-density-compact .smt-match-row .smt-team-name{font-size:12px}
.smt-density-compact .smt-fixture-card{padding-block:9px}
.smt-density-compact .smt-league-group{margin-bottom:12px}

/* Premium 2.2 route directory and table components */
.smt-route-entity-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.smt-route-entity-card{display:grid;grid-template-columns:48px minmax(0,1fr) 20px;align-items:center;gap:12px;min-height:76px;padding:12px;border:1px solid var(--smt-border);border-radius:14px;background:color-mix(in srgb,var(--smt-surface) 94%,var(--smt-bg));color:var(--smt-text);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.smt-route-entity-card:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--smt-primary) 45%,var(--smt-border));box-shadow:var(--smt-shadow-sm)}
.smt-route-entity-logo{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:color-mix(in srgb,var(--smt-primary) 12%,var(--smt-surface));font-size:11px;font-weight:900;color:var(--smt-primary-hover);overflow:hidden}
.smt-route-entity-logo img{width:100%;height:100%;object-fit:contain}
.smt-route-entity-card strong,.smt-route-entity-card small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smt-route-entity-card strong{font-size:13px}.smt-route-entity-card small{margin-top:4px;color:var(--smt-muted);font-size:10px}
.smt-route-matches-head{margin-top:24px}.smt-table-wrap{overflow:auto;border:1px solid var(--smt-border);border-radius:14px}.smt-route-table{width:100%;border-collapse:collapse;min-width:680px;background:var(--smt-surface)}.smt-route-table th,.smt-route-table td{padding:11px 12px;border-bottom:1px solid var(--smt-border);text-align:center;font-size:12px}.smt-route-table th:nth-child(2),.smt-route-table td:nth-child(2){text-align:left}.smt-route-table thead th{background:color-mix(in srgb,var(--smt-secondary) 5%,var(--smt-surface));font-size:10px;text-transform:uppercase;letter-spacing:.06em;color:var(--smt-muted)}.smt-table-team{display:flex;align-items:center;gap:9px;font-weight:750}.smt-table-team img{object-fit:contain}
@media(max-width:1023px){.smt-route-entity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.smt-route-entity-grid{grid-template-columns:1fr}.smt-route-entity-card{min-height:68px}}

/* Premium route centres: matches, leagues, competitions, countries and teams. */
.smt-route-centre{padding-bottom:48px}.smt-route-hero{display:flex;align-items:flex-start;justify-content:space-between;gap:28px;padding:28px;margin-bottom:18px;background:linear-gradient(135deg,var(--smt-surface,#fff),color-mix(in srgb,var(--smt-primary,#16c784) 7%,var(--smt-surface,#fff)));border:1px solid var(--smt-border,#e3eaf1);border-radius:var(--smt-radius,18px)}.smt-route-hero-copy{max-width:850px}.smt-route-hero h1{margin:5px 0 8px;font-size:clamp(28px,3vw,40px);line-height:1.12}.smt-route-subtitle{margin:0 0 10px;color:var(--smt-muted,#68778c);font-weight:700}.smt-route-intro{font-size:14px;line-height:1.7;color:var(--smt-muted,#68778c)}.smt-route-intro p:last-child{margin-bottom:0}.smt-route-hero-tools{display:grid;gap:12px;min-width:230px}.smt-season-picker{display:flex;align-items:center;gap:10px;padding:10px 12px;background:var(--smt-surface-2,#f4f7fa);border:1px solid var(--smt-border,#e3eaf1);border-radius:12px}.smt-season-picker label{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.smt-season-picker select{flex:1;min-height:38px;border:1px solid var(--smt-border,#dfe7ef);border-radius:9px;background:var(--smt-surface,#fff);color:inherit;padding:0 10px}.smt-route-tabs{display:flex;gap:8px;overflow-x:auto;padding:10px;margin:0 0 18px;background:var(--smt-surface,#fff);border:1px solid var(--smt-border,#e3eaf1);border-radius:14px;scrollbar-width:thin;position:sticky;top:76px;z-index:20}.smt-route-tabs a{white-space:nowrap;text-decoration:none;color:var(--smt-muted,#68778c);font-size:13px;font-weight:800;padding:10px 14px;border-radius:10px;transition:background .18s ease,color .18s ease}.smt-route-tabs a:hover,.smt-route-tabs a:focus-visible,.smt-route-tabs a[aria-current="page"]{background:var(--smt-primary,#16c784);color:#04130e}.smt-route-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,300px);gap:20px;align-items:start}.smt-route-primary{min-width:0}.smt-route-panel{display:none;background:var(--smt-surface,#fff);border:1px solid var(--smt-border,#e3eaf1);border-radius:var(--smt-radius,18px);padding:22px}.smt-route-panel.is-active{display:block}.smt-route-directory-section{background:var(--smt-surface,#fff);border:1px solid var(--smt-border,#e3eaf1);border-radius:var(--smt-radius,18px);padding:22px}.smt-route-aside{position:sticky;top:146px}.smt-route-entity-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.smt-route-entity-card{display:grid;grid-template-columns:48px minmax(0,1fr) 18px;align-items:center;gap:10px;text-decoration:none;color:inherit;padding:13px;border:1px solid var(--smt-border,#e3eaf1);border-radius:13px;background:var(--smt-surface-2,#f7f9fb);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.smt-route-entity-card:hover,.smt-route-entity-card:focus-visible{transform:translateY(-2px);border-color:var(--smt-primary,#16c784);box-shadow:0 10px 24px rgba(7,20,38,.08)}.smt-route-entity-logo{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:color-mix(in srgb,var(--smt-primary,#16c784) 15%,var(--smt-surface,#fff));font-size:12px;font-weight:900;overflow:hidden}.smt-route-entity-logo img{width:100%;height:100%;object-fit:contain}.smt-route-entity-card strong,.smt-route-entity-card small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smt-route-entity-card small{margin-top:3px;color:var(--smt-muted,#68778c);font-size:11px}.smt-route-fixture-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.smt-player-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.smt-player-card{display:grid;grid-template-columns:28px 52px minmax(0,1fr) auto;align-items:center;gap:10px;padding:11px;border:1px solid var(--smt-border,#e3eaf1);border-radius:12px;background:var(--smt-surface-2,#f7f9fb)}.smt-player-card img,.smt-player-avatar{width:52px;height:52px;border-radius:50%;object-fit:cover}.smt-player-avatar{display:grid;place-items:center;background:color-mix(in srgb,var(--smt-primary,#16c784) 18%,var(--smt-surface,#fff));font-weight:900}.smt-player-rank{font-size:12px;font-weight:900;color:var(--smt-muted,#68778c)}.smt-player-card strong,.smt-player-card small{display:block}.smt-player-card small{font-size:11px;color:var(--smt-muted,#68778c);margin-top:3px}.smt-player-card b{font-size:12px;text-align:right;color:var(--smt-primary,#0ea66b)}.smt-event-timeline{list-style:none;margin:0;padding:0;display:grid;gap:10px}.smt-event-timeline li{display:grid;grid-template-columns:54px 1fr;gap:12px;align-items:center;padding:12px;border-left:3px solid var(--smt-primary,#16c784);background:var(--smt-surface-2,#f7f9fb);border-radius:0 12px 12px 0}.smt-event-timeline time{font-size:13px;font-weight:900}.smt-event-timeline strong,.smt-event-timeline small{display:block}.smt-event-timeline small{margin-top:3px;color:var(--smt-muted,#68778c)}.smt-stats-grid,.smt-lineup-grid,.smt-card-split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.smt-stats-card,.smt-lineup-card,.smt-card-split>section{padding:16px;border:1px solid var(--smt-border,#e3eaf1);border-radius:14px;background:var(--smt-surface-2,#f7f9fb)}.smt-stats-card h3,.smt-lineup-card h3,.smt-card-split h3{margin:0 0 12px}.smt-stats-card dl,.smt-data-card dl{margin:0}.smt-stats-card dl>div,.smt-data-card dl>div{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px solid var(--smt-border,#e3eaf1)}.smt-stats-card dl>div:last-child,.smt-data-card dl>div:last-child{border:0}.smt-stats-card dt,.smt-data-card dt{color:var(--smt-muted,#68778c)}.smt-stats-card dd,.smt-data-card dd{margin:0;font-weight:800;text-align:right}.smt-lineup-card ol{margin:0;padding:0;list-style:none}.smt-lineup-card li{display:grid;grid-template-columns:28px 1fr auto;gap:8px;padding:8px 0;border-bottom:1px solid var(--smt-border,#e3eaf1)}.smt-lineup-card li:last-child{border:0}.smt-lineup-card li small{color:var(--smt-muted,#68778c)}.smt-lineup-formation{font-size:12px;color:var(--smt-muted,#68778c)}.smt-data-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.smt-data-card{padding:15px;border:1px solid var(--smt-border,#e3eaf1);border-radius:13px;background:var(--smt-surface-2,#f7f9fb)}.smt-data-card h3{margin:0 0 10px;font-size:16px}.smt-module-empty{display:flex;align-items:center;gap:14px;min-height:120px;padding:20px;border:1px dashed var(--smt-border,#d7e1ea);border-radius:14px;background:var(--smt-surface-2,#f7f9fb)}.smt-module-empty>span{font-size:30px}.smt-module-empty strong{display:block}.smt-module-empty p{margin:4px 0 0;color:var(--smt-muted,#68778c);font-size:13px}.smt-route-table{width:100%;border-collapse:collapse}.smt-route-table th,.smt-route-table td{padding:10px 8px;border-bottom:1px solid var(--smt-border,#e3eaf1);text-align:left;font-size:13px}.smt-route-table th{font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:var(--smt-muted,#68778c)}.smt-table-team{display:flex;align-items:center;gap:8px}.smt-table-team img{object-fit:contain}.smt-route-main-copy{columns:2;column-gap:36px;font-size:var(--smt-content-size,14px);line-height:1.75}.smt-route-faqs{margin-top:24px;break-inside:avoid}.smt-route-faqs details{border-bottom:1px solid var(--smt-border,#e3eaf1);padding:12px 0}.smt-route-faqs summary{font-weight:800;cursor:pointer}
@media(max-width:1100px){.smt-route-layout{grid-template-columns:1fr}.smt-route-aside{position:static}.smt-route-entity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.smt-route-tabs{top:68px}}
@media(max-width:767px){.smt-route-hero{display:block;padding:20px}.smt-route-hero-tools{margin-top:16px;min-width:0}.smt-route-tabs{top:62px;margin-inline:-4px}.smt-route-panel,.smt-route-directory-section{padding:15px}.smt-route-entity-grid,.smt-player-grid,.smt-route-fixture-grid,.smt-stats-grid,.smt-lineup-grid,.smt-card-split,.smt-data-cards{grid-template-columns:1fr}.smt-player-card{grid-template-columns:24px 44px minmax(0,1fr)}.smt-player-card img,.smt-player-avatar{width:44px;height:44px}.smt-player-card b{grid-column:3}.smt-route-main-copy{columns:1}}
