/* ==========================================================================
   Latest theme — Royalexch666 (dark + red accent), pixel-aligned to source
   ========================================================================== */

:root {
    --bg-0: #0d0d0d;
    --bg-1: #161616;
    --bg-2: #1c1c1c;
    --bg-3: #242424;
    --line: #2a2a2a;
    --line-2: #333;
    --red: #ff3131;
    --red-2: #e02020;
    --red-soft: rgba(255, 49, 49, 0.12);
    --gold: #f5c451;
    --green: #1fb96b;
    --txt: #ffffff;
    --txt-2: #cfcfd4;
    --txt-3: #8b8b94;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-pill: 25px;
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    --header-h: 60px;
    --sidebar-w: 90px;
    --aura-w: 210px;
    --bottomnav-h: 60px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

[data-theme="light"] {
    --bg-0: #f3f4f8;
    --bg-1: #ffffff;
    --bg-2: #f7f8fb;
    --bg-3: #eef0f5;
    --line: #e5e7eb;
    --line-2: #d1d5db;
    --txt: #0f1119;
    --txt-2: #4b5160;
    --txt-3: #7a8092;
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.latest-theme {
    font-family: var(--font);
    font-size: 14px;
    background: var(--bg-0);
    color: var(--txt);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}
body.latest-theme a { color: inherit; text-decoration: none; }
body.latest-theme img { max-width: 100%; display: block; }
body.latest-theme button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }

/* ============== HEADER ============== */
.latest-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--bg-0);
    border-bottom: 1px solid var(--line);
    height: var(--header-h);
    display: flex; align-items: center;
    padding: 0 14px;
    gap: 12px;
}
.latest-header .latest-burger {
    display: none;
    color: var(--txt); font-size: 20px; padding: 6px;
}
.latest-logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.latest-logo img { height: 36px; width: auto; }

.latest-topnav {
    display: flex; align-items: center; gap: 2px;
    flex: 1; overflow-x: auto; scrollbar-width: none;
    margin-left: 8px;
}
.latest-topnav::-webkit-scrollbar { display: none; }
.latest-topnav a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px; border-radius: var(--radius-sm);
    color: var(--txt); font-weight: 500; font-size: 13px;
    white-space: nowrap; transition: background .15s, color .15s;
}
.latest-topnav a img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.latest-topnav a:hover, .latest-topnav a.active {
    background: var(--bg-2); color: var(--red);
}

.latest-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.latest-icon-btn {
    width: 34px; height: 34px; border-radius: var(--radius-sm);
    background: var(--bg-1); border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--txt-2); transition: background .15s, color .15s;
}
.latest-icon-btn img { width: 16px; height: 16px; }
.latest-icon-btn:hover { background: var(--red-soft); color: var(--red); border-color: var(--red); }

.latest-btn-primary {
    background: var(--red); color: #fff; font-weight: 600;
    padding: 8px 22px; border-radius: var(--radius-xs);
    font-size: 13px; letter-spacing: .3px;
    transition: background .15s, transform .12s;
    white-space: nowrap;
    border: 1px solid var(--red);
}
.latest-btn-primary:hover { background: var(--red-2); border-color: var(--red-2); }
.latest-btn-outline {
    background: transparent; color: var(--txt);
    border: 1px solid var(--line-2); font-weight: 600;
    padding: 7px 14px; border-radius: var(--radius);
    font-size: 13px;
}
.latest-btn-outline:hover { border-color: var(--red); color: var(--red); }

.latest-lang {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 10px; background: var(--bg-1); border: 1px solid var(--line);
    border-radius: var(--radius-sm); color: var(--txt-2); font-size: 12px;
    white-space: nowrap;
}

.latest-search-wrap { position: relative; }
.latest-search-input {
    background: var(--bg-1); border: 1px solid var(--line);
    color: var(--txt); padding: 7px 12px 7px 34px;
    border-radius: var(--radius-pill); width: 200px; font-size: 13px;
    outline: none;
}
.latest-search-input:focus { border-color: var(--red); }
.latest-search-input::placeholder { color: var(--txt-3); }
.latest-search-wrap::before {
    content: '\f002'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--txt-3); font-size: 12px;
}

/* ============== SHELL ============== */
.latest-shell {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr var(--aura-w);
    min-height: calc(100vh - var(--header-h));
    background: var(--bg-0);
}
.latest-main {
    min-width: 0; padding: 14px; padding-bottom: calc(var(--bottomnav-h) + 14px);
    background: var(--bg-0);
}
@media (min-width: 992px) {
    .latest-main { padding: 14px 16px; padding-bottom: 16px; }
}

/* ============== LEFT SIDEBAR (NARROW ICON STYLE) ============== */
.latest-sidebar {
    background: var(--bg-1);
    border-right: 1px solid var(--line);
    padding: 8px 4px;
    position: sticky; top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
}
.latest-sidebar::-webkit-scrollbar { width: 4px; }
.latest-sidebar::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }

.latest-sb-section { margin-bottom: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.latest-sb-section:first-child { border-top: 0; padding-top: 0; }

.latest-sb-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.latest-sb-list a {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 8px 4px; border-radius: var(--radius-sm);
    color: var(--txt-2); font-size: 10.5px; font-weight: 500;
    text-align: center; line-height: 1.15;
    transition: background .15s, color .15s;
}
.latest-sb-list a img { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.latest-sb-list a:hover, .latest-sb-list a.active { background: var(--bg-2); color: var(--red); }

.latest-sb-social {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 8px 0;
}
.latest-sb-social a {
    width: 34px; height: 34px; border-radius: var(--radius-sm);
    background: var(--bg-2); border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
}
.latest-sb-social a img { width: 16px; height: 16px; }
.latest-sb-social a:hover { border-color: var(--red); }

.latest-sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 60;
}
.latest-sidebar-overlay.show { display: block; }

/* ============== RIGHT AURA SIDEBAR ============== */
.latest-aura {
    background: var(--bg-1); border-left: 1px solid var(--line);
    position: sticky; top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    padding: 12px 10px 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.latest-aura::-webkit-scrollbar { width: 4px; }
.latest-aura::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
.latest-aura-title {
    color: var(--red); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    text-align: center; margin: 0;
}
.latest-aura-tabs {
    display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
    padding-bottom: 6px; border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
}
.latest-aura-tabs::-webkit-scrollbar { display: none; }
.latest-aura-tab {
    flex-shrink: 0; padding: 6px 10px; border-radius: var(--radius-xs);
    background: var(--bg-2); color: var(--txt-2); font-size: 10.5px;
    font-weight: 600;
    border: 1px solid var(--line); white-space: nowrap;
    scroll-snap-align: start;
    transition: background .15s, color .15s, border-color .15s;
}
.latest-aura-tab:hover { color: var(--txt); border-color: var(--line-2); }
.latest-aura-tab.active { background: var(--red); color: #fff; border-color: var(--red); }
.latest-aura-grid {
    display: grid; grid-template-columns: 1fr; gap: 8px;
    flex: 1;
}
.latest-aura-grid.is-hidden { display: none; }
.latest-aura-card {
    border-radius: var(--radius-sm); overflow: hidden;
    background: var(--bg-2); border: 1px solid var(--line);
    transition: border-color .15s, transform .15s;
    display: flex; flex-direction: column;
}
.latest-aura-card:hover { border-color: var(--red); transform: translateY(-1px); }
.latest-aura-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.latest-aura-img img { width: 100%; height: 100%; object-fit: cover; }
.latest-aura-live {
    position: absolute; top: 5px; left: 5px;
    background: var(--red); color: #fff;
    padding: 1px 6px; border-radius: var(--radius-xs);
    font-size: 9px; font-weight: 800; letter-spacing: .8px;
    text-transform: uppercase;
}
.latest-aura-name {
    padding: 5px 6px;
    color: var(--txt); font-size: 11px; font-weight: 500;
    text-align: center; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.latest-aura-more {
    margin-top: 4px; padding: 8px 10px; border-radius: var(--radius-sm);
    background: var(--bg-2); border: 1px solid var(--line);
    color: var(--red); text-align: center;
    font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    transition: background .15s, border-color .15s;
}
.latest-aura-more:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ============== HERO ============== */
.latest-hero {
    position: relative; border-radius: var(--radius);
    overflow: hidden; background: var(--bg-1);
    margin-bottom: 14px;
    aspect-ratio: 16 / 5.5;
    max-height: 280px;
}
@media (max-width: 768px) { .latest-hero { aspect-ratio: 16 / 9; max-height: 220px; } }
.latest-hero-track { position: absolute; inset: 0; overflow: hidden; }
.latest-hero-slides { display: flex; height: 100%; transition: transform .6s ease; will-change: transform; }
.latest-hero-slide { min-width: 100%; height: 100%; }
.latest-hero-slide img { width: 100%; height: 100%; object-fit: cover; }

.latest-hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,0.6); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; z-index: 2;
}
.latest-hero-arrow.prev { left: 10px; }
.latest-hero-arrow.next { right: 10px; }
.latest-hero-arrow:hover { background: var(--red); }

.latest-hero-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 2;
}
.latest-hero-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.45); cursor: pointer;
    transition: background .2s, width .2s;
}
.latest-hero-dot.active { background: var(--red); width: 18px; border-radius: 4px; }

/* ============== SECTION HEADERS ============== */
.latest-section { margin-bottom: 18px; }
.latest-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px; gap: 12px;
}
.latest-section-title {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--txt); font-weight: 700; font-size: 14px; margin: 0;
    text-transform: uppercase; letter-spacing: .8px;
}
.latest-section-title i { color: var(--red); }
.latest-section-action {
    background: var(--red); color: #fff; padding: 5px 12px;
    border-radius: var(--radius-xs); font-size: 11px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
}
.latest-section-action:hover { background: var(--red-2); }
.latest-carousel-ctrl { display: inline-flex; gap: 4px; }
.latest-carousel-ctrl button {
    width: 28px; height: 28px; border-radius: var(--radius-xs);
    background: var(--bg-1); border: 1px solid var(--line);
    color: var(--txt-2); display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
}
.latest-carousel-ctrl button:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ============== SPORTS BUTTONS ============== */
.latest-sports-btns {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 16px;
}
.latest-sports-btn {
    border-radius: var(--radius); overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    aspect-ratio: 16 / 5; background: var(--bg-1);
}
.latest-sports-btn img { width: 100%; height: 100%; object-fit: cover; }
.latest-sports-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============== FEATURE CARDS ============== */
.latest-features {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 16px;
}
@media (max-width: 768px) { .latest-features { grid-template-columns: repeat(2, 1fr); } }

.latest-feature-card {
    background: var(--bg-1); border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 14px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    transition: border-color .2s, transform .2s;
    min-height: 130px;
    text-align: center;
}
.latest-feature-card:hover { border-color: var(--red); transform: translateY(-2px); }
.latest-feature-card .latest-feature-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.latest-feature-card .latest-feature-icon img { width: 50px; height: 50px; object-fit: contain; }
.latest-feature-card h4 { color: var(--txt); margin: 0; font-size: 14px; font-weight: 700; }
.latest-feature-card p  { color: var(--txt-3); margin: 0; font-size: 11.5px; line-height: 1.4; }

/* ============== CAROUSEL TRACK ============== */
.latest-carousel-track {
    display: grid; grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    gap: 8px; overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding-bottom: 4px;
}
.latest-carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .latest-carousel-track {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-flow: row;
        grid-auto-columns: unset;
    }
}
@media (min-width: 1400px) {
    .latest-carousel-track { grid-template-columns: repeat(6, 1fr); }
}

.latest-game-card {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    background: var(--bg-1); border: 1px solid var(--line);
    transition: border-color .2s, transform .2s;
    aspect-ratio: 4 / 5;
}
.latest-game-card .latest-game-img { width: 100%; height: 100%; overflow: hidden; }
.latest-game-card .latest-game-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
}
.latest-game-card:hover { transform: translateY(-2px); border-color: var(--red); }
.latest-game-card:hover .latest-game-img img { transform: scale(1.05); }

.latest-game-card .latest-game-badge {
    position: absolute; top: 6px; left: 6px;
    background: var(--red); color: #fff;
    padding: 2px 8px; border-radius: var(--radius-xs);
    font-size: 9px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.latest-game-card .latest-game-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 4px 6px; font-size: 10px; font-weight: 600; color: #fff;
    text-align: center; line-height: 1.25;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 60%);
    white-space: normal; word-break: break-word; hyphens: auto;
    max-height: 50%; overflow: hidden;
}
.latest-game-card .latest-game-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85);
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.5); font-size: 14px;
}
.latest-game-card:hover .latest-game-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============== PROVIDER GRID ============== */
.latest-providers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 768px) { .latest-providers { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.latest-provider-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-1); border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    transition: border-color .2s, transform .2s;
}
.latest-provider-card img { width: 100%; height: 100%; object-fit: cover; }
.latest-provider-card:hover { transform: translateY(-2px); border-color: var(--red); }

/* ============== SUPPORT BANNERS ============== */
.latest-support {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px; margin: 14px 0;
}
.latest-support a { border-radius: var(--radius); overflow: hidden; }
.latest-support img { width: 100%; height: auto; display: block; transition: transform .2s; }
.latest-support a:hover img { transform: scale(1.02); }
@media (max-width: 600px) { .latest-support { grid-template-columns: 1fr; } }

/* ============== FOOTER ============== */
.latest-footer {
    background: var(--bg-1); border-top: 1px solid var(--line);
    padding: 24px 14px 14px;
    margin-top: 24px;
}
.latest-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 18px; }
.latest-footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.latest-footer-top .latest-logo img { height: 40px; }
.latest-footer-social { display: flex; gap: 8px; }
.latest-footer-social a {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: var(--bg-2); border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
}
.latest-footer-social a:hover { background: var(--red-soft); border-color: var(--red); }
.latest-footer-social a img { width: 16px; height: 16px; }

.latest-footer-text { color: var(--txt-3); font-size: 12.5px; line-height: 1.6; }
.latest-footer-partners { display: grid; gap: 10px; }
.latest-footer-partners h5 { color: var(--txt); margin: 0 0 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.latest-footer-partners-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.latest-footer-partners-row img { height: 28px; width: auto; opacity: .85; }

.latest-footer-links {
    display: flex; flex-wrap: wrap; gap: 6px 18px;
    padding-top: 12px; border-top: 1px solid var(--line);
}
.latest-footer-links a { color: var(--txt-2); font-size: 12px; }
.latest-footer-links a:hover { color: var(--red); }
.latest-footer-copy { color: var(--txt-3); font-size: 11.5px; padding-top: 8px; }

/* ============== BOTTOM NAV (mobile) ============== */
.latest-bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    background: var(--bg-1); border-top: 1px solid var(--line);
    height: var(--bottomnav-h);
    padding: 4px 4px;
}
.latest-bottom-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(5, 1fr);
    height: 100%; align-items: center;
}
.latest-bottom-nav li a {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    color: var(--txt-2); font-size: 10px; font-weight: 600;
    padding: 4px;
}
.latest-bottom-nav li a img { width: 22px; height: 22px; object-fit: contain; }
.latest-bottom-nav li a.active, .latest-bottom-nav li a:hover { color: var(--red); }

/* ============== FLOATING WHATSAPP ============== */
.latest-whatsapp-float {
    position: fixed; right: 14px; bottom: calc(var(--bottomnav-h) + 14px); z-index: 45;
    width: 50px; height: 50px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 25px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    animation: latestPulseWa 1.6s infinite;
}
@keyframes latestPulseWa {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (min-width: 992px) {
    .latest-whatsapp-float { bottom: 22px; }
}

/* ============== RESPONSIVE BREAKPOINTS ============== */

/* >=1400px: full 3-column shell with wider game grid */
@media (min-width: 1400px) {
    :root { --aura-w: 240px; }
    .latest-carousel-track { grid-template-columns: repeat(6, 1fr); }
}

/* 1200-1399: keep 3-col shell, tighter aura column */
@media (max-width: 1399px) and (min-width: 1200px) {
    :root { --aura-w: 200px; }
}

/* 992-1199: drop right Aura column */
@media (max-width: 1199px) {
    .latest-shell { grid-template-columns: var(--sidebar-w) 1fr; }
    .latest-aura { display: none; }
}

/* 768-991 (tablet): hide top text nav, use burger drawer, 4-col carousel */
@media (max-width: 991px) {
    .latest-header .latest-burger { display: inline-flex; }
    .latest-topnav { display: none; }
    .latest-search-input { width: 150px; }
    .latest-shell { grid-template-columns: 1fr; }
    .latest-sidebar {
        position: fixed; top: 0; left: 0; height: 100vh;
        width: 260px; z-index: 70;
        transform: translateX(-100%);
        transition: transform .3s ease;
        padding: 14px 8px;
    }
    .latest-sidebar.open { transform: translateX(0); }
    .latest-sb-list a {
        flex-direction: row; text-align: left; gap: 10px; padding: 9px 10px;
        font-size: 13px; justify-content: flex-start;
    }
    .latest-sb-social { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .latest-bottom-nav { display: block; }
    .latest-carousel-track { grid-template-columns: repeat(4, 1fr); }
}

/* 600-767 (large mobile / small tablet): 3-col carousel */
@media (max-width: 767px) {
    .latest-carousel-track { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .latest-features { grid-template-columns: repeat(2, 1fr); }
    .latest-providers { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* <=600 (mobile): tighter chrome */
@media (max-width: 600px) {
    .latest-header { padding: 0 8px; gap: 6px; }
    .latest-logo img { height: 30px; }
    .latest-search-wrap, .latest-lang { display: none; }
    .latest-icon-btn { width: 32px; height: 32px; }
    .latest-btn-primary { padding: 6px 12px; font-size: 12px; }
    .latest-section-title { font-size: 12.5px; }
    .latest-section-action { padding: 4px 10px; font-size: 10px; }
    .latest-feature-card { padding: 12px 8px; min-height: 110px; gap: 6px; }
    .latest-feature-card .latest-feature-icon { width: 42px; height: 42px; }
    .latest-feature-card .latest-feature-icon img { width: 40px; height: 40px; }
    .latest-feature-card h4 { font-size: 12px; }
    .latest-feature-card p { font-size: 10.5px; }
    .latest-main { padding: 10px; padding-bottom: calc(var(--bottomnav-h) + 12px); }
    .latest-hero { margin-bottom: 10px; }
    .latest-section { margin-bottom: 14px; }
    .latest-game-card .latest-game-name { font-size: 9.5px; padding: 14px 3px 4px; }
    .latest-game-card .latest-game-badge { padding: 2px 6px; font-size: 8px; }
}

/* <=480 (small mobile): 3-col features stay 2, carousel 3-col, smaller hero */
@media (max-width: 480px) {
    :root { --header-h: 54px; --bottomnav-h: 56px; }
    .latest-carousel-track { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .latest-providers { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .latest-sports-btns { gap: 6px; margin-bottom: 12px; }
    .latest-support { gap: 6px; }
    .latest-feature-card { padding: 10px 6px; min-height: 100px; }
    .latest-feature-card .latest-feature-icon { width: 38px; height: 38px; }
    .latest-feature-card .latest-feature-icon img { width: 36px; height: 36px; }
}

/* <=380 (very small): 2-col carousel, single-col providers */
@media (max-width: 380px) {
    .latest-carousel-track { grid-template-columns: repeat(2, 1fr); }
    .latest-features { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .latest-bottom-nav li a { font-size: 9px; }
    .latest-bottom-nav li a img { width: 20px; height: 20px; }
    .latest-logo img { height: 26px; }
    .latest-btn-primary { padding: 5px 10px; font-size: 11px; }
}
