

:root {
    --cream: #FDFCF8;
    --linen: #F5F3EE;
    --ink: #1C1917;
    --stone: #78716C;
    --emerald: #059669;
    --emerald2: #10B981;
    --rose: #E11D48;
    --sand: #E7E5E4;
    --card: #FFFFFF;
    --amber: #D97706;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout Shell ── */
.shell {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    min-height: 100vh;
    gap: 28px;
    padding: 0 24px;
}

/* ── Sidebar ── */
.sidebar {
    width: 240px;
    flex-shrink: 0;
    padding: 28px 0 40px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 20;
}

.sidebar::-webkit-scrollbar {
    width: 0
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.brand-ico {
    font-size: 28px
}

.search-box {
    position: relative;
    padding: 0 4px
}

.search-box input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border-radius: 10px;
    border: 1px solid var(--sand);
    background: var(--card);
    color: var(--ink);
    font-size: 14px;
    outline: none;
    transition: all .25s;
}

.search-box input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, .1);
}

.search-box input::placeholder {
    color: var(--stone)
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: .5;
}

.nav-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--stone);
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 4px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 4px
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--stone);
    cursor: pointer;
    transition: all .2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.nav-item:hover {
    background: var(--linen);
    color: var(--ink)
}

.nav-item.on {
    background: var(--ink);
    color: #fff
}

.nav-item .ni-ico {
    font-size: 16px
}

.nav-item .ni-count {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    background: var(--sand);
    color: var(--stone);
    padding: 2px 8px;
    border-radius: 999px;
}

.nav-item.on .ni-count {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.side-section {
    padding: 0 4px
}

.side-section h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--stone);
    font-weight: 700;
    margin-bottom: 10px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.tag-cloud span {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--linen);
    color: var(--stone);
    cursor: pointer;
    transition: all .2s;
}

.tag-cloud span:hover {
    background: var(--emerald);
    color: #fff
}

.trending-mini {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.trend-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s;
}

.trend-mini:hover {
    background: var(--linen)
}

.trend-mini img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.trend-mini .tm-info {
    min-width: 0
}

.trend-mini .tm-title {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trend-mini .tm-meta {
    font-size: 11px;
    color: var(--stone);
    margin-top: 2px;
}

.side-foot {
    margin-top: auto;
    font-size: 12px;
    color: var(--stone);
    line-height: 1.7;
    padding: 0 4px;
}

/* ── Main Stage ── */
.stage {
    flex: 1;
    padding: 28px 0 60px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Hero Banner ── */
.hero-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #047857 100%);
    padding: 40px 36px;
    color: #fff;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.hero-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, .2);
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="150" cy="50" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="30" cy="180" r="60" fill="rgba(255,255,255,0.02)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 520px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    background: rgba(255, 255, 255, .15);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 24px
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #064E3B;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.hero-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

/* ── Section Headers ── */
.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.sec-head h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-head h2 span {
    font-size: 22px
}

.sec-head a {
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald);
    text-decoration: none;
    transition: color .2s;
}

.sec-head a:hover {
    color: var(--ink)
}

/* ── Horizontal Scroll Row ── */
.h-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    width: 100%;
}

.h-scroll:active {
    cursor: grabbing
}

.h-scroll::-webkit-scrollbar {
    height: 6px
}

.h-scroll::-webkit-scrollbar-track {
    background: transparent
}

.h-scroll::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 999px
}

.h-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--stone)
}

.h-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--card);
    border: 1px solid var(--sand);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    opacity: 0;
    animation: hPop .5s cubic-bezier(.22, 1, .36, 1) forwards;
    scroll-snap-align: start;
}

.h-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    border-color: var(--emerald);
}

.h-card:hover .h-img img {
    transform: scale(1.08)
}

.h-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.h-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .3));
}

.h-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.h-rank.gold0 {
    background: linear-gradient(135deg, #F59E0B, #D97706)
}

.h-rank.gold1 {
    background: linear-gradient(135deg, #9CA3AF, #6B7280)
}

.h-rank.gold2 {
    background: linear-gradient(135deg, #B45309, #92400E)
}

.h-body {
    padding: 14px
}

.h-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.h-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--stone);
}

.h-stars {
    color: #F59E0B;
    font-size: 12px
}

@keyframes hPop {
    from {
        opacity: 0;
        transform: translateX(20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ── Game Rows (Full-width Cards) ── */
.rows {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.row-card {
    display: grid;
    grid-template-columns:180px 1fr auto;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--sand);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    animation: rowSlide .55s cubic-bezier(.22, 1, .36, 1) forwards;
    transition: all .35s;
    cursor: pointer;
    position: relative;
}

.row-card:hover {
    border-color: var(--emerald);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .06), 0 0 0 1px rgba(5, 150, 105, .08);
    transform: translateY(-3px);
}

.row-card:hover .row-img img {
    transform: scale(1.05)
}

.row-img {
    width: 180px;
    height: 100%;
    min-height: 150px;
    overflow: hidden;
    position: relative;
}

.row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.row-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, .35));
    pointer-events: none;
}

.row-core {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.row-top {
    margin-bottom: 8px
}

.row-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--emerald);
    margin-bottom: 6px;
}

.row-cat .rc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
}

.row-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.3px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-desc {
    font-size: 13.5px;
    color: var(--stone);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row-bot {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.row-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--stone);
}

.row-live .rl-pip {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald2);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
    animation: rlBlink 2.4s infinite;
}

@keyframes rlBlink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.row-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px
}

.row-stars .rs {
    color: #F59E0B
}

.row-stars .rs.off {
    color: var(--sand)
}

.row-stars .rs-num {
    margin-left: 4px;
    font-size: 12px;
    color: var(--stone);
    font-weight: 700
}

.row-side {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 110px;
    border-left: 1px solid var(--sand);
    margin: 14px 0;
    padding-left: 24px;
}

.row-big-num {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--emerald);
    line-height: 1;
}

.row-big-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--stone);
    font-weight: 700;
    margin-top: 4px;
}

.row-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    margin-top: auto;
}

.row-play:hover {
    background: var(--emerald);
    transform: scale(1.1)
}

@keyframes rowSlide {
    from {
        opacity: 0;
        transform: translateX(30px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ── Stats Bar ── */
.stats-bar {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    background: var(--card);
    border: 1px solid var(--sand);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all .3s;
}

.stat-box:hover {
    border-color: var(--emerald);
    transform: translateY(-3px)
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    color: var(--stone);
    margin-top: 4px;
    font-weight: 600;
}

/* ── Category Pills Strip ── */
.pill-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--sand);
    background: var(--card);
    font-size: 13px;
    font-weight: 600;
    color: var(--stone);
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill:hover, .pill.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
}

/* ── Newsletter CTA ── */
.news-cta {
    background: linear-gradient(135deg, var(--ink), #292524);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
}

.news-cta h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
}

.news-cta p {
    font-size: 15px;
    opacity: .7;
    margin-bottom: 20px;
    position: relative;
}

.news-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.news-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    outline: none;
}

.news-form button {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: var(--emerald);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.news-form button:hover {
    background: var(--emerald2)
}

/* ── Empty ── */
.empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--stone);
    animation: emptyFade .5s ease;
}

.empty .eb {
    font-size: 56px;
    opacity: .2;
    margin-bottom: 14px
}

.empty h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--ink)
}

.empty p {
    font-size: 14px
}

@keyframes emptyFade {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

/* ── Bottom Share Dock ── */
.share-dock {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.share-pills {
    display: flex;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(20px) scale(.9);
    pointer-events: none;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.share-dock.open .share-pills {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.share-pills a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: transform .25s;
}

.share-pills a:hover {
    transform: scale(1.15) translateY(-4px)
}

.sp-g {
    background: #DD4B39
}

.sp-f {
    background: #3B5998
}

.sp-l {
    background: #0077B5
}

.sp-s {
    background: #EB4924
}

.sp-t {
    background: #1DA1F2
}

.share-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    transition: all .3s cubic-bezier(.68, -.55, .265, 1.55);
    position: relative;
    z-index: 2;
}

.share-toggle:hover {
    transform: scale(1.08)
}

.share-toggle.spun {
    transform: rotate(135deg);
    background: var(--emerald)
}

/* ── Back to Top ── */
.to-top {
    position: fixed;
    left: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--sand);
    background: var(--card);
    color: var(--stone);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    z-index: 998;
}

.to-top.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all
}

.to-top:hover {
    border-color: var(--emerald);
    color: var(--emerald)
}

/* ── Footer ── */
.foot {
    border-top: 1px solid var(--sand);
    background: var(--linen);
    padding: 56px 24px 32px;
}

.foot-inner {
    max-width: 1360px;
    margin: 0 auto
}

.foot-desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--stone);
}

.foot-desc strong {
    display: block;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.4px;
}

.foot-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.foot-grid h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 700;
}

.foot-grid a {
    display: block;
    font-size: 14px;
    color: var(--stone);
    text-decoration: none;
    padding: 5px 0;
    transition: color .2s, transform .2s;
}

.foot-grid a:hover {
    color: var(--emerald);
    transform: translateX(3px)
}

.foot-base {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--sand);
    font-size: 12px;
    color: var(--stone);
}

.foot-base a {
    color: var(--stone);
    text-decoration: none;
    transition: color .2s
}

.foot-base a:hover {
    color: var(--emerald)
}

/* ═══════════════════════════════════════
   MOBILE (< 900px)
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .shell {
        flex-direction: column;
        padding: 0 16px;
        gap: 0
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px 0 16px;
        border-right: none;
        border-bottom: 1px solid var(--sand);
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        overflow-x: visible;
    }

    .brand {
        font-size: 20px;
        padding: 0
    }

    .search-box {
        flex: 1;
        min-width: 200px;
        padding: 0
    }

    .nav-title {
        display: none
    }

    .nav-list {
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0
    }

    .nav-list::-webkit-scrollbar {
        display: none
    }

    .nav-item {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
        width: auto
    }

    .nav-item .ni-count {
        display: none
    }

    .side-section {
        display: none
    }

    .side-foot {
        display: none
    }

    .stage {
        padding: 24px 0 50px;
        gap: 28px
    }

    .hero-banner {
        padding: 28px 24px
    }

    .hero-title {
        font-size: 28px
    }

    .hero-desc {
        font-size: 15px
    }

    .stats-bar {
        grid-template-columns:repeat(2, 1fr)
    }

    .stat-num {
        font-size: 24px
    }

    .row-card {
        grid-template-columns:140px 1fr;
        grid-template-rows:auto auto
    }

    .row-img {
        width: 140px;
        min-height: 130px
    }

    .row-core {
        padding: 16px 18px;
        grid-column: 2
    }

    .row-title {
        font-size: 18px
    }

    .row-desc {
        font-size: 13px
    }

    .row-side {
        grid-column: 1/3;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-left: none;
        border-top: 1px solid var(--sand);
        margin: 0;
        padding: 12px 18px;
        min-width: auto;
    }

    .row-big-num {
        font-size: 28px
    }

    .row-play {
        margin-top: 0
    }

    .h-card {
        width: 170px
    }

    .h-img {
        height: 100px
    }

    .news-cta {
        padding: 28px 20px
    }

    .news-cta h3 {
        font-size: 20px
    }

    .news-form {
        flex-direction: column
    }

    .share-dock {
        bottom: 66px
    }

    .share-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px
    }

    .to-top {
        left: auto;
        right: 16px;
        bottom: 80px;
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 24px
    }

    .row-card {
        grid-template-columns:1fr;
        grid-template-rows:auto auto auto
    }

    .row-img {
        width: 100%;
        height: 180px;
        min-height: auto
    }

    .row-core {
        grid-column: 1
    }

    .row-side {
        grid-column: 1
    }

    .stats-bar {
        grid-template-columns:1fr 1fr;
        gap: 10px
    }

    .stat-box {
        padding: 16px
    }

    .foot {
        padding: 40px 16px 24px
    }

    .foot-grid {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }
}


a { text-decoration: none; }
