/* sora-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/sora-v17-latin-regular.woff2') format('woff2');
}
/* sora-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/sora-v17-latin-500.woff2') format('woff2');
}
/* sora-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/sora-v17-latin-600.woff2') format('woff2');
}
/* sora-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/sora-v17-latin-700.woff2') format('woff2');
}
/* sora-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/sora-v17-latin-800.woff2') format('woff2');
}
/* archivo-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/archivo-v25-latin-regular.woff2') format('woff2'); 
}
/* archivo-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/archivo-v25-latin-500.woff2') format('woff2'); 
}
/* archivo-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/archivo-v25-latin-600.woff2') format('woff2');
}
/* archivo-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/archivo-v25-latin-700.woff2') format('woff2');
}

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #fafbfc;
    --card-bg: #ffffff;
    --surface-bg: #f7f8fa;
    --text-main: #0a0e27;
    --text-secondary: #5b6582;
    --text-muted: #8891a8;
    --accent-primary: #ff6b00;
    --accent-primary-dark: #e65100;
    --accent-secondary: #ff8f3d;
    --accent-bitcoin: #f7931a;
    --border-light: #e8ecf2;
    --border-medium: #d1d9e6;
    --shadow-sm: 0 1px 2px rgba(10,14,39,.04);
    --shadow-md: 0 4px 16px rgba(10,14,39,.06);
    --shadow-lg: 0 12px 32px rgba(10,14,39,.08);
    --shadow-hover: 0 8px 24px rgba(10,14,39,.1);

    --space-xs: clamp(8px, 1.5vw, 12px);
    --space-sm: clamp(12px, 2vw, 16px);
    --space-md: clamp(16px, 3vw, 24px);
    --space-lg: clamp(24px, 4vw, 40px);
    --space-xl: clamp(32px, 5vw, 64px);

    --radius-sm: 12px;
    --radius-md: clamp(16px, 2.5vw, 20px);
    --radius-lg: clamp(20px, 3vw, 28px);
    --radius-xl: clamp(20px, 4vw, 32px);

    --content-max: 1600px;
    --content-pad: clamp(12px, 4vw, 50px);
    --section-gap: clamp(32px, 6vw, 64px);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

.main-content {
    margin: 0 auto;
    padding: 20px 45px;
    max-width: var(--content-max);
    width: 100%;
}

.page-hero {
    padding: clamp(32px, 6vw, 72px) 0 0;
    position: relative;
    overflow: visible;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(255, 107, 0, 0.08) 0%,
        rgba(255, 143, 61, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}


.page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(12px, 2vw, 18px);
    position: relative;
    padding-bottom: clamp(28px, 5vw, 56px);
    z-index: 1;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    background: var(--surface-bg);
    border: 1px solid var(--border-light);
    padding: 6px 16px;
    border-radius: 100px;
}

.page-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
    animation: pulse-live 2s ease-in-out infinite;
    flex-shrink: 0;
}

.page-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--text-main);
    margin: 0;
}

.page-hero-accent {
    background: linear-gradient(
        135deg,
        var(--accent-primary) 0%,
        var(--accent-secondary) 50%,
        #f7931a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 540px;
    margin: 0;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(16px, 3vw, 42px);
    letter-spacing: -.03em;
    position: relative;
    display: inline-block;
    padding: 10px 0 clamp(12px, 2vw, 20px) clamp(0px, 2vw, 16px);
    margin-left: clamp(0px, 1vw, 10px);
}

.section-title::after {
    content: '';
    position: absolute;
    left: clamp(0px, 2vw, 16px);
    bottom: 0;
    width: clamp(50px, 12vw, 100px);
    height: clamp(3px, .5vw, 5px);
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 3px;
    box-shadow: 0 3px 12px rgba(255,107,0,.4);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(6px, 1vw, 8px);
    height: clamp(6px, 1vw, 8px);
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(255,107,0,.8);
    animation: pulse-dot 2s ease-in-out infinite;
    display: none;
}

@keyframes pulse-dot {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.4); opacity: .6; }
}

.hero-section {
    padding-top: clamp(16px, 3vw, 32px);
    margin-top: 0;
}

.hero-section > * { position: relative; z-index: 1; }

.hero-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: start;
}

/* ── Market Pulse ── */
.market-pulse {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding: 6px 0 10px;
    flex-shrink: 0;
    margin-right: 10px;
}

.market-pulse-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-right: 10px;
}

.market-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.5);
    animation: pulse-live 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.market-pulse-coins {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pulse-coin {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 10px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}

.pulse-coin:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.pulse-coin-icon { font-size: 16px; line-height: 1; color: var(--accent-bitcoin); }
.pulse-coin-name { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; }
.pulse-coin-price { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 800; color: var(--text-main); letter-spacing: -.01em; }
.pulse-coin-change { font-size: 12px; font-weight: 700; padding: 3px 7px; border-radius: 7px; }
.pulse-coin-change.positive { color: #10b981; background: rgba(16,185,129,.1); }
.pulse-coin-change.negative { color: #ef4444; background: rgba(239,68,68,.1); }
.pulse-coin-data { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.pulse-coin-meta { display: flex; align-items: center; gap: 6px; }
.pulse-coin-vol { font-size: 10px; font-weight: 600; color: var(--text-muted); background: var(--surface-bg); padding: 2px 6px; border-radius: 5px; }

@keyframes flash-up { 0% { color: #10b981; } 100% { color: var(--text-main); } }
@keyframes flash-down { 0% { color: #ef4444; } 100% { color: var(--text-main); } }
.pulse-coin-price.flash-up { animation: flash-up .6s ease-out forwards; }
.pulse-coin-price.flash-down { animation: flash-down .6s ease-out forwards; }

/* ══════════════════════════════════════════════════════════
   MAIN HERO CARD
══════════════════════════════════════════════════════════ */
.main-news-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(255,107,0,.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(255,107,0,.04),
        0 2px 4px rgba(10,14,39,.04),
        0 8px 24px rgba(10,14,39,.06),
        0 24px 48px rgba(255,107,0,.05);
}

.main-news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(255,107,0,.6) 0%,
        rgba(255,143,61,.3) 30%,
        rgba(139,92,246,.2) 60%,
        rgba(255,107,0,.4) 100%
    );
    background-size: 300% 300%;
    animation: border-flow 6s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity .4s;
}

@keyframes border-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-news-card:hover::before { opacity: 1; }

.main-news-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,.1) 0%, transparent 65%);
    pointer-events: none;
    transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .4s;
    opacity: 0;
    z-index: 0;
}

.main-news-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.main-news-card:hover {
    transform: translateY(-6px) scale(1.005);
    border-color: rgba(255,107,0,.25);
    box-shadow:
        0 0 0 1px rgba(255,107,0,.08),
        0 8px 16px rgba(10,14,39,.06),
        0 24px 64px rgba(10,14,39,.1),
        0 40px 80px rgba(255,107,0,.08);
}

.main-news-content {
    padding: clamp(20px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.main-news-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255,107,0,.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(139,92,246,.03) 0%, transparent 60%);
    pointer-events: none;
}

/* ── News Badge ── */
.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px clamp(10px, 2vw, 14px);
    border-radius: 100px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: all .3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-main {
    background: linear-gradient(135deg, var(--cat-main) 0%, var(--accent-secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,0,.3), 0 0 0 3px rgba(255,107,0,.1);
    animation: badge-breathe 3s ease-in-out infinite;
}

@keyframes badge-breathe {
    0%, 100% { box-shadow: 0 4px 16px rgba(255,107,0,.25), 0 0 0 3px rgba(255,107,0,.08); }
    50% { box-shadow: 0 6px 24px rgba(255,107,0,.4), 0 0 0 5px rgba(255,107,0,.12); }
}

.badge-regulation { background: rgba(59,130,246,.1);  color: var(--cat-regulation); border: 1.5px solid rgba(59,130,246,.2); }
.badge-defi       { background: rgba(139,92,246,.1);  color: var(--cat-defi);       border: 1.5px solid rgba(139,92,246,.2); }
.badge-nft        { background: rgba(236,72,153,.1);  color: var(--cat-nft);        border: 1.5px solid rgba(236,72,153,.2); }
.badge-mining     { background: rgba(245,158,11,.1);  color: var(--cat-mining);     border: 1.5px solid rgba(245,158,11,.2); }
.badge-incident   { background: rgba(239,68,68,.1);   color: var(--cat-incident);   border: 1.5px solid rgba(239,68,68,.2); }
.badge-markets    { background: rgba(16,185,129,.1);  color: var(--cat-markets);    border: 1.5px solid rgba(16,185,129,.2); }
.badge-ai         { background: rgba(6,182,212,.1);   color: var(--cat-ai);         border: 1.5px solid rgba(6,182,212,.2); }
.badge-gamefi     { background: rgba(249,115,22,.1);  color: var(--cat-gamefi);     border: 1.5px solid rgba(249,115,22,.2); }
.badge-adoption   { background: rgba(20,184,166,.1);  color: var(--cat-adoption);   border: 1.5px solid rgba(20,184,166,.2); }
.badge-technology { background: rgba(99,102,241,.1);  color: var(--cat-technology); border: 1.5px solid rgba(99,102,241,.2); }

.news-meta {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    margin-bottom: clamp(12px, 2.5vw, 22px);
    font-size: clamp(11px, 1.5vw, 12px);
    flex-wrap: wrap;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
}

.news-date svg { width: clamp(12px, 2vw, 14px); height: clamp(12px, 2vw, 14px); opacity: .7; flex-shrink: 0; }

.main-news-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 3.5vw, 34px);
    font-weight: 800;
    line-height: 1.22;
    color: var(--text-main);
    margin-bottom: clamp(12px, 2.5vw, 24px);
    letter-spacing: -.035em;
    transition: color .3s;
}

.main-news-card:hover .main-news-title { color: var(--accent-primary); }

.main-news-excerpt {
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2vw, 18px);
    background: rgba(247,248,250,.8);
    border-radius: 14px;
    border-left: 3px solid rgba(255,107,0,.3);
    margin-bottom: auto;
    transition: border-color .3s, background .3s;
}

.main-news-excerpt p {
    font-size: clamp(13px, 2vw, 15.5px);
    color: var(--text-secondary);
    line-height: 1.8;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(16px, 3vw, 28px);
    margin-top: clamp(16px, 3vw, 28px);
    border-top: 1px solid var(--border-light);
    gap: 12px;
    flex-wrap: wrap;
}

.main-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.main-news-tag {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(255,107,0,.08);
    border: 1.5px solid rgba(255,107,0,.18);
    padding: 6px 13px;
    border-radius: 100px;
    letter-spacing: .04em;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
}

.main-news-tag:hover {
    background: rgba(255,107,0,.15);
    border-color: rgba(255,107,0,.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,0,.15);
    color: var(--accent-primary);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(12px, 2vw, 13px);
    padding: clamp(10px, 1.5vw, 14px) clamp(18px, 3vw, 30px);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff5c00 100%);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255,107,0,.3), 0 1px 3px rgba(255,107,0,.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.read-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .3s;
}

.read-more:hover { transform: translateX(4px) scale(1.04); box-shadow: 0 8px 28px rgba(255,107,0,.45); color: #fff; }
.read-more:hover::before { opacity: 1; }
.read-more svg { width: 14px; height: 14px; transition: transform .3s; flex-shrink: 0; }
.read-more:hover svg { transform: translateX(6px); }

.title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-news-card:hover .title-link {
    color: var(--accent-primary);
}

/* ══════════════════════════════════════════════════════════
   CATEGORY NEWS CARDS (DeFi + NFT) — сдержанный дизайн
══════════════════════════════════════════════════════════ */
.category-news-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 3vw, 20px);
}

.category-news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 3.5vw, 32px);
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Левая акцентная полоска — появляется при ховере */
.category-news-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}

.category-news-card:has(.badge-defi)::before {
    background: linear-gradient(180deg, #7c3aed 0%, #a78bfa 100%);
}

.category-news-card:has(.badge-nft)::before {
    background: linear-gradient(180deg, #be185d 0%, #f472b6 100%);
}

.category-news-card:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); border-color: var(--border-medium); }
.category-news-card:hover::before { transform: scaleY(1); }

.category-news-card .news-meta { margin-bottom: clamp(12px, 2vw, 18px); }

.category-news-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(14px, 2.5vw, 17.5px);
    font-weight: 700;
    line-height: 1.38;
    color: var(--text-main);
    margin-bottom: clamp(8px, 2vw, 13px);
    transition: color .3s;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-news-title a { color: inherit; text-decoration: none; }

.category-news-card:has(.badge-defi):hover .category-news-title,
.category-news-card:has(.badge-defi) .category-news-title a:hover { color: #7c3aed; }

.category-news-card:has(.badge-nft):hover .category-news-title,
.category-news-card:has(.badge-nft) .category-news-title a:hover { color: #be185d; }

.category-news-excerpt {
    font-size: clamp(12px, 2vw, 13.5px);
    color: var(--text-secondary);
    line-height: 1.68;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   SPECIAL CARDS: MINING + REGULATION
══════════════════════════════════════════════════════════ */
.special-news-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 4vw, 32px);
    margin-top: clamp(16px, 4vw, 36px);
    margin-bottom: clamp(40px, 8vw, 64px);
}

/* Mining Card */
.mining-news-card {
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    background: linear-gradient(145deg, #1a1206 0%, #231808 40%, #1c1407 100%);
    border: 1.5px solid rgba(245,158,11,.25);
    box-shadow:
        0 0 0 1px rgba(245,158,11,.08),
        0 4px 16px rgba(0,0,0,.3),
        0 12px 40px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(245,158,11,.1);
}

.mining-news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 90% 10%, rgba(245,158,11,.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 10% 90%, rgba(251,146,60,.12) 0%, transparent 55%),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(245,158,11,.015) 20px, rgba(245,158,11,.015) 21px);
    pointer-events: none;
    animation: mining-heat 6s ease-in-out infinite;
}

@keyframes mining-heat { 0%, 100% { opacity: .8; } 50% { opacity: 1; } }

.mining-news-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, #fbbf24, #f59e0b, transparent);
    animation: mining-scan 3s ease-in-out infinite;
}

@keyframes mining-scan {
    0%, 100% { opacity: .5; transform: scaleX(.6); }
    50% { opacity: 1; transform: scaleX(1); }
}

.mining-news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,158,11,.55);
    box-shadow:
        0 0 0 1px rgba(245,158,11,.15),
        0 8px 24px rgba(0,0,0,.4),
        0 24px 64px rgba(0,0,0,.3),
        0 0 60px rgba(245,158,11,.12),
        inset 0 1px 0 rgba(245,158,11,.2);
}

.mining-news-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.mining-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f97316 100%);
    color: #1a0a00;
    padding: clamp(6px, 1vw, 9px) clamp(14px, 2.5vw, 22px);
    border-radius: 100px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    box-shadow:
        0 4px 16px rgba(245,158,11,.4),
        0 0 0 3px rgba(245,158,11,.12),
        inset 0 1px 0 rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mining-icon-wrapper { position: relative; }

.mining-icon {
    width: clamp(40px, 7vw, 60px);
    height: clamp(40px, 7vw, 60px);
    background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(251,191,36,.1));
    border: 1.5px solid rgba(245,158,11,.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(245,158,11,.2), inset 0 1px 0 rgba(245,158,11,.2);
}

.mining-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    border: 1.5px dashed rgba(245,158,11,.3);
    animation: icon-rotate 8s linear infinite;
}

@keyframes icon-rotate { to { transform: rotate(360deg); } }

.mining-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1px solid rgba(245,158,11,.15);
    animation: icon-pulse-ring 2.5s ease-in-out infinite;
}

@keyframes icon-pulse-ring {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.08); opacity: 0; }
}

.mining-icon svg { width: clamp(20px, 3.5vw, 30px); height: clamp(20px, 3.5vw, 30px); color: #fbbf24; filter: drop-shadow(0 0 6px rgba(245,158,11,.6)); }

.mining-news-content { position: relative; z-index: 2; }

.mining-news-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(17px, 3vw, 26px);
    font-weight: 800;
    line-height: 1.28;
    color: #fef3c7;
    margin-bottom: clamp(10px, 2vw, 18px);
    letter-spacing: -.025em;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.mining-news-title a { color: inherit; text-decoration: none; }
.mining-news-title a:hover { color: #fde68a; }

.mining-news-excerpt {
    font-size: clamp(12px, 2vw, 14.5px);
    color: rgba(254,243,199,.65);
    line-height: 1.7;
    margin-bottom: clamp(14px, 3vw, 24px);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mining-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(14px, 3vw, 24px); }

.mining-tag {
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    color: #fcd34d;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 700;
    letter-spacing: .04em;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.mining-tag:hover { background: rgba(245,158,11,.25); transform: translateY(-2px); color: #fcd34d; }

.mining-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(14px, 3vw, 22px);
    border-top: 1px solid rgba(245,158,11,.15);
    gap: 12px;
    flex-wrap: wrap;
}

.mining-date { display: flex; align-items: center; gap: 6px; color: rgba(254,243,199,.5); font-size: clamp(11px, 1.5vw, 12px); font-weight: 500; }

.mining-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1a0a00;
    font-weight: 800;
    font-size: clamp(12px, 2vw, 13px);
    padding: clamp(9px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(245,158,11,.35), inset 0 1px 0 rgba(255,255,255,.3);
}

.mining-read-more:hover { transform: translateX(5px); box-shadow: 0 8px 28px rgba(245,158,11,.5); filter: brightness(1.08); }
.mining-date svg, .mining-read-more svg { width: 14px; height: 14px; }
.mining-read-more svg { transition: transform .3s; }
.mining-read-more:hover svg { transform: translateX(5px); }

/* Regulation Card */
.regulation-news-card {
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    background: linear-gradient(145deg, #060c1a 0%, #0a1428 40%, #071120 100%);
    border: 1.5px solid rgba(59,130,246,.22);
    box-shadow:
        0 0 0 1px rgba(59,130,246,.06),
        0 4px 16px rgba(0,0,0,.3),
        0 12px 40px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(59,130,246,.1);
}

.regulation-news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px),
        radial-gradient(ellipse 70% 60% at 90% 0%, rgba(96,165,250,.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(59,130,246,.08) 0%, transparent 55%);
    background-size: 32px 32px, 32px 32px, auto, auto;
    pointer-events: none;
}

.regulation-news-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96,165,250,.8), rgba(147,197,253,.9), rgba(96,165,250,.8), transparent);
    animation: regulation-glow 4s ease-in-out infinite;
}

@keyframes regulation-glow {
    0%, 100% { opacity: .5; transform: scaleX(.7); }
    50% { opacity: 1; transform: scaleX(1); }
}

.regulation-news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,.5);
    box-shadow:
        0 0 0 1px rgba(59,130,246,.12),
        0 8px 24px rgba(0,0,0,.4),
        0 24px 64px rgba(0,0,0,.3),
        0 0 60px rgba(59,130,246,.1),
        inset 0 1px 0 rgba(59,130,246,.2);
}

.regulation-news-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.regulation-badge {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: clamp(6px, 1vw, 9px) clamp(14px, 2.5vw, 22px);
    border-radius: 100px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    box-shadow:
        0 4px 16px rgba(59,130,246,.45),
        0 0 0 3px rgba(59,130,246,.12),
        inset 0 1px 0 rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    gap: 6px;
}

.regulation-icon-wrapper { position: relative; }

.regulation-icon {
    width: clamp(40px, 7vw, 60px);
    height: clamp(40px, 7vw, 60px);
    background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(96,165,250,.08));
    border: 1.5px solid rgba(59,130,246,.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(59,130,246,.2), inset 0 1px 0 rgba(59,130,246,.15);
}

.regulation-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    border: 1px dashed rgba(59,130,246,.3);
    animation: icon-rotate 10s linear infinite reverse;
}

.regulation-icon::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(96,165,250,.6);
    animation: icon-scan 2.5s ease-in-out infinite;
    border-radius: 1px;
}

@keyframes icon-scan {
    0% { top: 15%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 85%; opacity: 0; }
}

.regulation-icon svg { width: clamp(20px, 3.5vw, 30px); height: clamp(20px, 3.5vw, 30px); color: #60a5fa; filter: drop-shadow(0 0 6px rgba(59,130,246,.6)); }

.regulation-news-content { position: relative; z-index: 2; }

.regulation-news-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(17px, 3vw, 26px);
    font-weight: 800;
    line-height: 1.28;
    color: #dbeafe;
    margin-bottom: clamp(10px, 2vw, 18px);
    letter-spacing: -.025em;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.regulation-news-title a { color: inherit; text-decoration: none; }
.regulation-news-title a:hover { color: #93c5fd; }

.regulation-news-excerpt {
    font-size: clamp(12px, 2vw, 14.5px);
    color: rgba(219,234,254,.55);
    line-height: 1.7;
    margin-bottom: clamp(14px, 3vw, 24px);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.regulation-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(14px, 3vw, 24px); }

.regulation-tag {
    background: rgba(59,130,246,.1);
    border: 1px solid rgba(59,130,246,.3);
    color: #93c5fd;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 700;
    letter-spacing: .04em;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.regulation-tag:hover { background: rgba(59,130,246,.22); transform: translateY(-2px); color: #93c5fd; }

.regulation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(14px, 3vw, 22px);
    border-top: 1px solid rgba(59,130,246,.15);
    gap: 12px;
    flex-wrap: wrap;
}

.regulation-date { display: flex; align-items: center; gap: 6px; color: rgba(219,234,254,.4); font-size: clamp(11px, 1.5vw, 12px); font-weight: 500; }

.regulation-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 800;
    font-size: clamp(12px, 2vw, 13px);
    padding: clamp(9px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: 12px;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(59,130,246,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

.regulation-read-more:hover { transform: translateX(5px); box-shadow: 0 8px 28px rgba(59,130,246,.55); filter: brightness(1.1); }
.regulation-date svg, .regulation-read-more svg { width: 14px; height: 14px; }
.regulation-read-more svg { transition: transform .3s; }
.regulation-read-more:hover svg { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════════
   AD BANNERS
══════════════════════════════════════════════════════════ */

/* ── Shared ad base ── */

.ad-banner-section {
    margin-top: 20px;
}

.ad-banner-section .ad-banner,
.ad-banner-section-2 .ad-banner,
.ad-banner-section-3 .ad-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.ad-banner-section .ad-banner-content,
.ad-banner-section-2 .ad-banner-content,
.ad-banner-section-3 .ad-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 4vw, 40px);
    padding: clamp(24px, 5vw, 56px) clamp(20px, 4vw, 56px);
}

/* ── AD BANNER 1 (light) ── */
.ad-banner-section .ad-banner {
    background: linear-gradient(120deg, #ffffff 0%, #f8f9fb 50%, #ffffff 100%);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset, 0 10px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.05);
}

.ad-banner-section .ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(255,107,0,.15) inset, 0 18px 50px rgba(0,0,0,.12), 0 5px 15px rgba(255,107,0,.1);
    border-color: rgba(255,107,0,.2);
}

.ad-banner-section .ad-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,145,0,.1) 0%, rgba(255,200,150,.05) 35%, transparent 70%);
    animation: fire-breathe 5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.ad-banner-section .ad-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,160,50,.08) 0%, transparent 70%);
    animation: fire-breathe 7s ease-in-out infinite reverse;
    pointer-events: none;
    mix-blend-mode: multiply;
}

@keyframes fire-breathe {
    0%, 100% { transform: scale(1) translate(0,0); opacity: .7; }
    50% { transform: scale(1.1) translate(-15px,15px); opacity: 1; }
}

.ad-banner-section .ad-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,85,0,.9);
    background: rgba(255,107,0,.08);
    border: 1px solid rgba(255,107,0,.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ad-banner-section .ad-banner-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: ad1-blink 2s ease-in-out infinite;
}

@keyframes ad1-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255,107,0,.8); }
    50% { opacity: .4; box-shadow: none; }
}

.ad-banner-section .ad-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.5vw, 18px);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.ad-banner-section .ad-banner-description {
    font-size: clamp(13px, 2vw, 16px);
    color: rgba(0,0,0,.65);
    line-height: 1.7;
    margin-bottom: clamp(16px, 3vw, 36px);
}

.ad-banner-section .ad-banner-cta,
.ad-banner-section-2 .ad-banner-cta,
.ad-banner-section-3 .ad-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 3vw, 36px);
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(13px, 2vw, 15px);
    letter-spacing: .01em;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-banner-section .ad-banner-cta { background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%); color: #fff; box-shadow: 0 6px 20px rgba(255,81,0,.3); }
.ad-banner-section .ad-banner-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 30px rgba(255,81,0,.4); }

.ad-banner-section .ad-banner-visual,
.ad-banner-section-2 .ad-banner-visual,
.ad-banner-section-3 .ad-banner-visual {
    flex-shrink: 0;
    width: clamp(80px, 15vw, 180px);
    height: clamp(80px, 15vw, 180px);
}

.ad-banner-section .ad-banner-icon,
.ad-banner-section-2 .ad-banner-icon,
.ad-banner-section-3 .ad-banner-icon {
    width: 100%; height: 100%;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner-section .ad-banner-icon { background: linear-gradient(145deg, #ffffff 0%, rgba(255,235,220,.5) 100%); border: 1px solid rgba(255,107,0,.15); }
.ad-banner-section .ad-banner-icon svg { width: clamp(40px, 8vw, 80px); height: clamp(40px, 8vw, 80px); color: var(--accent-primary); filter: drop-shadow(0 4px 8px rgba(255,107,0,.3)); }

/* Narrow variant */
.ad-banner-section.narrow .ad-banner,
.ad-banner-section-3.narrow .ad-banner {
    border-radius: 20px;
}

.ad-banner-section.narrow .ad-banner-content,
.ad-banner-section-3.narrow .ad-banner-content {
    padding: 14px 24px;
    gap: 16px;
}

.ad-banner-section.narrow .ad-banner-visual,
.ad-banner-section-3.narrow .ad-banner-visual { width: 56px; height: 56px; }

.ad-banner-section.narrow .ad-banner-icon,
.ad-banner-section-3.narrow .ad-banner-icon { border-radius: 12px; }

.ad-banner-section.narrow .ad-banner-icon svg,
.ad-banner-section-3.narrow .ad-banner-icon svg { width: 28px; height: 28px; }

.ad-banner-section.narrow .ad-banner-text,
.ad-banner-section-3.narrow .ad-banner-text { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.ad-banner-section.narrow .ad-banner-header,
.ad-banner-section-3.narrow .ad-banner-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.ad-banner-section.narrow .ad-banner-label,
.ad-banner-section-3.narrow .ad-banner-label { margin-bottom: 0; padding: 3px 10px; font-size: 9px; }

.ad-banner-section.narrow .ad-banner-title,
.ad-banner-section-3.narrow .ad-banner-title { font-size: clamp(14px, 2.5vw, 20px); margin-bottom: 0; }

.ad-banner-section.narrow .ad-banner-description,
.ad-banner-section-3.narrow .ad-banner-description { font-size: clamp(12px, 1.8vw, 14px); margin-bottom: 0; max-width: 500px; }

.ad-banner-section.narrow .ad-banner-cta,
.ad-banner-section-3.narrow .ad-banner-cta { padding: 10px 20px; font-size: 13px; border-radius: 10px; }

.ad-banner-section.narrow .ad-banner-actions,
.ad-banner-section-3.narrow .ad-banner-actions { flex-shrink: 0; }

/* ── AD BANNER 2 (dark blue) ── */
.ad-banner-section-2 { margin-bottom: clamp(40px, 8vw, 60px); }

.ad-banner-section-2 .ad-banner {
    background: linear-gradient(135deg, #0a1628 0%, #0d2240 35%, #071523 100%);
    border: 1px solid rgba(56,189,248,.15);
    box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset, 0 18px 60px rgba(0,0,0,.4), 0 0 60px rgba(56,189,248,.05);
}

.ad-banner-section-2 .ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(56,189,248,.2) inset, 0 24px 80px rgba(0,0,0,.45), 0 0 80px rgba(56,189,248,.1);
    border-color: rgba(56,189,248,.28);
}

.ad-banner-section-2 .ad-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(56,189,248,.14) 0%, rgba(99,102,241,.08) 45%, transparent 70%);
    animation: blue-drift 6s ease-in-out infinite;
    pointer-events: none;
}

.ad-banner-section-2 .ad-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,.1) 0%, rgba(56,189,248,.05) 50%, transparent 75%);
    animation: blue-drift 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes blue-drift {
    0%, 100% { transform: translate(0,0) scale(1); opacity: .7; }
    50% { transform: translate(-30px,-20px) scale(1.1); opacity: 1; }
}

.ad-banner-section-2 .ad-banner-text { position: relative; padding-left: 20px; }

.ad-banner-section-2 .ad-banner-text::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(56,189,248,.6) 30%, rgba(99,102,241,.6) 70%, transparent 100%);
    animation: scan-vert 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scan-vert {
    0%, 100% { opacity: .4; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.ad-banner-section-2 .ad-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(56,189,248,.9);
    background: rgba(56,189,248,.08);
    border: 1px solid rgba(56,189,248,.22);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ad-banner-section-2 .ad-banner-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #38bdf8;
    animation: ad2-blink 2s ease-in-out infinite;
}

@keyframes ad2-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(56,189,248,.9); }
    50% { opacity: .3; box-shadow: none; }
}

.ad-banner-section-2 .ad-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.5vw, 18px);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 40%, #7dd3fc 70%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.ad-banner-section-2 .ad-banner-description { font-size: clamp(13px, 2vw, 16px); color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: clamp(16px, 3vw, 36px); }

.ad-banner-section-2 .ad-banner-cta { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; box-shadow: 0 6px 28px rgba(14,165,233,.4), 0 0 0 1px rgba(255,255,255,.08) inset; }
.ad-banner-section-2 .ad-banner-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(14,165,233,.5), 0 6px 20px rgba(99,102,241,.3); }

.ad-banner-section-2 .ad-banner-icon { background: linear-gradient(145deg, rgba(56,189,248,.12) 0%, rgba(99,102,241,.08) 100%); border: 1.5px solid rgba(56,189,248,.2); }
.ad-banner-section-2 .ad-banner-icon svg { width: clamp(40px, 8vw, 80px); height: clamp(40px, 8vw, 80px); color: #38bdf8; filter: drop-shadow(0 0 16px rgba(56,189,248,.5)); }

/* ── AD BANNER 3 (dark orange) ── */
.ad-banner-section-3 { margin-top: 5px; }

.ad-banner-section-3 .ad-banner {
    background: linear-gradient(120deg, #0d0f1a 0%, #1a0f05 40%, #0d0f1a 100%);
    border: 1px solid rgba(255,107,0,.15);
    box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 24px 80px rgba(0,0,0,.35), 0 0 80px rgba(255,107,0,.06);
}

.ad-banner-section-3 .ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(255,107,0,.2) inset, 0 32px 100px rgba(0,0,0,.4), 0 0 120px rgba(255,107,0,.1);
    border-color: rgba(255,107,0,.25);
}

.ad-banner-section-3 .ad-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,107,0,.22) 0%, rgba(255,60,0,.12) 35%, transparent 70%);
    animation: fire-breathe-3 5s ease-in-out infinite;
    pointer-events: none;
}

.ad-banner-section-3 .ad-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,140,0,.12) 0%, rgba(139,92,246,.07) 45%, transparent 70%);
    animation: fire-breathe-3 7s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes fire-breathe-3 {
    0%, 100% { transform: scale(1) translate(0,0); opacity: .8; }
    50% { transform: scale(1.15) translate(-20px,20px); opacity: 1; }
}

.ad-banner-section-3 .ad-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,107,0,.8);
    background: rgba(255,107,0,.1);
    border: 1px solid rgba(255,107,0,.25);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ad-banner-section-3 .ad-banner-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: ad3-blink 2s ease-in-out infinite;
}

@keyframes ad3-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255,107,0,.8); }
    50% { opacity: .4; box-shadow: none; }
}

.ad-banner-section-3 .ad-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.5vw, 18px);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 40%, #ff9f58 70%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.ad-banner-section-3 .ad-banner-description { font-size: clamp(13px, 2vw, 16px); color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: clamp(16px, 3vw, 36px); }

.ad-banner-section-3 .ad-banner-cta { background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%); color: #fff; box-shadow: 0 6px 28px rgba(255,107,0,.45), 0 0 0 1px rgba(255,255,255,.1) inset; }
.ad-banner-section-3 .ad-banner-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(255,107,0,.55); }

.ad-banner-section-3.narrow .ad-banner { background: linear-gradient(90deg, #0d0f1a 0%, #1a0f05 50%, #0d0f1a 100%); }

.ad-banner-section-3 .ad-banner-icon { background: linear-gradient(145deg, rgba(255,107,0,.15) 0%, rgba(255,60,0,.08) 100%); border: 1.5px solid rgba(255,107,0,.25); }
.ad-banner-section-3 .ad-banner-icon svg { width: clamp(40px, 8vw, 80px); height: clamp(40px, 8vw, 80px); color: var(--accent-primary); filter: drop-shadow(0 0 16px rgba(255,107,0,.5)); }

/* ── Coming Soon Modal ── */
.cs-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.4,0,.2,1);
}

.cs-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.cs-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #0d0f1c 0%, #131629 50%, #0d0f1c 100%);
    border: 1.5px solid rgba(255, 107, 0, .22);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 72px);
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255,107,0,.06),
        0 24px 80px rgba(0,0,0,.6),
        0 0 120px rgba(255,107,0,.08);
    transform: translateY(24px) scale(.96);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    overflow: hidden;
}

.cs-overlay.is-open .cs-card {
    transform: translateY(0) scale(1);
}

/* Фоновые лучи */
.cs-card::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(255,107,0,.18) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 4s ease-in-out infinite;
}

.cs-card::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(ellipse, rgba(139,92,246,.1) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 6s ease-in-out infinite reverse;
}

@keyframes cs-breathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: .7; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.cs-card::after { transform: none; }
@keyframes cs-breathe-2 {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Верхняя светящаяся полоска */
.cs-glow-line {
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,.9), rgba(255,143,61,1), rgba(255,107,0,.9), transparent);
    border-radius: 2px;
    animation: cs-line-pulse 3s ease-in-out infinite;
}

@keyframes cs-line-pulse {
    0%, 100% { opacity: .5; transform: scaleX(.7); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Иконка */
.cs-icon {
    width: 72px; height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(255,107,0,.15) 0%, rgba(255,143,61,.08) 100%);
    border: 1.5px solid rgba(255,107,0,.3);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 32px rgba(255,107,0,.15), inset 0 1px 0 rgba(255,107,0,.15);
    animation: cs-icon-float 3s ease-in-out infinite;
}

@keyframes cs-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cs-icon::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 28px;
    border: 1.5px dashed rgba(255,107,0,.25);
    animation: icon-rotate 10s linear infinite;
}

.cs-icon svg {
    width: 34px; height: 34px;
    color: #ff8f3d;
    filter: drop-shadow(0 0 10px rgba(255,107,0,.55));
}

/* Бейдж */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,107,0,.1);
    border: 1px solid rgba(255,107,0,.25);
    color: #ff8f3d;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cs-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b00;
    animation: pulse-live 2s ease-in-out infinite;
}

/* Заголовок */
.cs-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0c8 50%, #ff8f3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Описание */
.cs-desc {
    font-size: clamp(13px, 2vw, 15px);
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Разделитель */
.cs-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 28px;
    box-shadow: 0 0 10px rgba(255,107,0,.4);
}

/* Кнопка закрытия */
.cs-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 24px rgba(255,107,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
    position: relative;
    z-index: 1;
    letter-spacing: .01em;
}

.cs-close:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(255,107,0,.5);
}

.cs-close:active { transform: scale(.98); }

/* X-кнопка */
.cs-close-x {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 2;
}

.cs-close-x:hover { background: rgba(255,107,0,.15); border-color: rgba(255,107,0,.3); }
.cs-close-x svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }

/* Частицы */
.cs-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 28px;
}

.cs-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(255,107,0,.6);
    border-radius: 50%;
    animation: cs-particle-float linear infinite;
}

@keyframes cs-particle-float {
    0% { transform: translateY(0) scale(1); opacity: .8; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   LATEST NEWS SECTION
══════════════════════════════════════════════════════════ */
.latest-section { margin-bottom: var(--section-gap); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 16px);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 2vw, 13px) clamp(18px, 3vw, 28px);
    background: var(--text-main);
    color: #fff;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 2vw, 13px);
    letter-spacing: .02em;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    white-space: nowrap;
    margin-right: clamp(0px, 1vw, 10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,14,39,.2);
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s;
}

.view-all-btn:hover { background: var(--accent-primary); transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 32px rgba(255,107,0,.3); color: #fff; }
.view-all-btn:hover::before { left: 100%; }
.view-all-btn svg { width: clamp(13px, 2vw, 15px); height: clamp(13px, 2vw, 15px); flex-shrink: 0; transition: transform .3s; }
.view-all-btn:hover svg { transform: translateX(5px); }

.latest-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }

/* ── News List ── */
.news-list { display: flex; flex-direction: column; gap: clamp(16px, 3vw, 24px); }

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: clamp(16px, 4vw, 32px);
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.news-card:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.news-card:hover::before { transform: scaleY(1); }
.news-card .news-meta { margin-bottom: clamp(10px, 2vw, 16px); }

.news-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(15px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: clamp(10px, 2vw, 16px);
    transition: color .3s;
    letter-spacing: -.01em;
}

.news-title a { color: inherit; text-decoration: none; }
.news-card:hover .news-title { color: var(--accent-primary); }

.news-excerpt {
    font-size: clamp(13px, 2vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(12px, 2.5vw, 20px);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-tags { display: flex; gap: clamp(6px, 1.5vw, 12px); flex-wrap: wrap; }

.news-tag {
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-bg);
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 14px);
    border-radius: 8px;
    transition: all .2s;
    border: 1px solid var(--border-light);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.news-tag:hover { background: var(--accent-primary); color: #fff; border-color: var(--accent-primary); transform: translateY(-2px); }

.load-more-container { text-align: center; margin-top: clamp(24px, 5vw, 48px); }

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(13px, 2vw, 16px) clamp(28px, 5vw, 40px);
    background: var(--card-bg);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 14px;
    font-weight: 700;
    font-size: clamp(13px, 2vw, 15px);
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
}

.load-more-btn:hover { background: var(--accent-primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,107,0,.2); }
.load-more-btn svg { width: clamp(15px, 2.5vw, 18px); height: clamp(15px, 2.5vw, 18px); flex-shrink: 0; }

.news-card--fadeIn { animation: newsCardFadeIn .35s ease both; }
@keyframes newsCardFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: clamp(20px, 4vw, 32px); }

.widget {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: clamp(16px, 4vw, 32px);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: visible;
    position: relative;
}

.widget-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(15px, 2.5vw, 19px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: clamp(16px, 3vw, 24px);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.01em;
}

.widget-title svg { width: clamp(16px, 3vw, 22px); height: clamp(16px, 3vw, 22px); color: var(--accent-primary); flex-shrink: 0; }

.popular-list { display: flex; flex-direction: column; gap: clamp(6px, 1.5vw, 10px); }

.popular-item {
    display: flex;
    gap: clamp(10px, 2vw, 14px);
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    padding: clamp(10px, 2vw, 14px);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.popular-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    transform: scaleY(0);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border-radius: 0 2px 2px 0;
}

.popular-item:hover { background: var(--surface-bg); border-color: rgba(255,107,0,.1); transform: translateX(4px); }
.popular-item:hover::before { transform: scaleY(1); }

.popular-number {
    flex-shrink: 0;
    width: clamp(34px, 5.5vw, 44px);
    height: clamp(34px, 5.5vw, 44px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(12px, 2vw, 15px);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    transition: all .4s;
    margin-right: 4px;
}

.popular-item:nth-child(1) .popular-number { border-color: #F59E0B; color: #F59E0B; box-shadow: 0 0 0 4px rgba(245,158,11,.10), 0 2px 12px rgba(245,158,11,.20); }
.popular-item:nth-child(2) .popular-number { border-color: #94A3B8; color: #94A3B8; box-shadow: 0 0 0 4px rgba(148,163,184,.10), 0 2px 10px rgba(148,163,184,.18); }
.popular-item:nth-child(3) .popular-number { border-color: #CD7F32; color: #CD7F32; box-shadow: 0 0 0 4px rgba(205,127,50,.10); }
.popular-item:nth-child(4) .popular-number,
.popular-item:nth-child(5) .popular-number { border-color: #e4e8f0; color: #c8cedf; }

.popular-content { flex: 1; min-width: 0; position: relative; z-index: 1; }

.popular-title {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: clamp(4px, 1vw, 8px);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s;
}

.popular-title a { color: inherit; text-decoration: none; }
.popular-item:hover .popular-title { color: var(--accent-primary); }
.popular-meta { display: flex; align-items: center; gap: clamp(6px, 1.5vw, 12px); flex-wrap: wrap; }
.popular-date { display: flex; align-items: center; gap: 4px; font-size: clamp(10px, 1.5vw, 12px); color: var(--text-muted); font-weight: 500; }
.popular-date svg { width: 13px; height: 13px; opacity: .6; flex-shrink: 0; }
.popular-trending { display: inline-flex; align-items: center; gap: 3px; font-size: clamp(9px, 1.3vw, 10px); font-weight: 700; color: #10b981; text-transform: uppercase; letter-spacing: .05em; }
.popular-trending svg { width: 11px; height: 11px; flex-shrink: 0; animation: trending-pulse 2s ease-in-out infinite; }

@keyframes trending-pulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: .7; transform: translateY(-2px); }
}

.sidebar {
    padding-bottom: 100px;
}

#fngWidget {
    position: sticky;
    top: 170px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════ */

/* ── 1600px+ ── */
@media (min-width: 1600px) {
    .main-content { max-width: 1800px; }
    .latest-grid { grid-template-columns: 1fr 440px; }
}

/* ── 1400px–1599px ── */
@media (min-width: 1400px) {
    .latest-grid { grid-template-columns: 1fr 420px; }
}

/* ── 1200px–1399px ── */
@media (min-width: 1200px) {
    .hero-grid { grid-template-columns: 1.5fr 1fr; }
    .latest-grid { grid-template-columns: 1fr 380px; }
    .section-title::before { display: block; }
}

/* ── Скрыть 3-й баннер ниже 1300px ── */
@media (max-width: 1300px) {
    .ad-banner-section-3 { display: none; }
}

/* ── Планшет широкий: 1025px–1199px ── */
@media (max-width: 1199px) {
    .main-content { padding: 20px 40px; }
    .sidebar { padding-bottom: 0; }
}

/* ── Скрыть market pulse ниже 1100px ── */
@media (max-width: 1100px) {
    .market-pulse { display: none; }
}

/* ══════════════════════════════════════════════════════════
   ПЛАНШЕТ: 600px – 1024px
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    .main-content { padding: 0 20px; }

    /* ── Page Hero ── */
    .page-hero { padding-top: 32px; }
    .page-hero::before { display: none; }

    .page-hero-inner {
        gap: 10px;
        padding-bottom: 28px;
        align-items: flex-start;
        text-align: left;
    }

    .page-hero-eyebrow {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: .1em;
    }

    .page-hero-title {
        font-size: clamp(26px, 5vw, 42px);
        letter-spacing: -.035em;
        line-height: 1.15;
    }

    .page-hero-title br { display: none; }

    .page-hero-sub {
        font-size: clamp(13px, 1.8vw, 15px);
        max-width: 100%;
        line-height: 1.6;
    }

    /* ── Hero section ── */
    .hero-section { padding-top: 8px; }

    .hero-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 0;
    }

    /* ── Section title ── */
    .section-title {
        font-size: clamp(18px, 3vw, 26px);
        padding: 4px 0 12px 0;
        margin: 0 0 16px 0;
        letter-spacing: -.03em;
    }

    .section-title::before { display: none !important; }

    .section-title::after {
        left: 0;
        width: 48px;
        height: 3px;
        bottom: 0;
    }

    .section-header {
        align-items: center;
        margin-bottom: 0;
    }

    .section-header .section-title { margin-bottom: 0; }
}

/* ── Планшет: сетка hero ── */
@media (max-width: 899px) {
    .hero-grid { grid-template-columns: 1fr; }
    .page-hero-title br { display: none; }

    .category-news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ad-banner-section .ad-banner-visual,
    .ad-banner-section-2 .ad-banner-visual,
    .ad-banner-section-3 .ad-banner-visual {
        width: 100px;
        height: 100px;
    }
}

/* ── Планшет: special cards в 2 колонки ── */
@media (min-width: 900px) {
    .special-news-section { grid-template-columns: 1fr 1fr; }
    .category-news-card:hover { transform: translateX(6px) translateY(-2px); }
    .news-card:hover { transform: translateX(6px); }
    .load-more-btn { width: auto; }
}

/* ══════════════════════════════════════════════════════════
   СМАРТФОН: ≤ 599px
══════════════════════════════════════════════════════════ */
@media (max-width: 599px) {

    .main-content { padding: 0 14px; }

    /* ── Page Hero ── */
    .page-hero { padding-top: 20px; }

    .page-hero-inner {
        gap: 8px;
        padding-bottom: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .page-hero-eyebrow {
        font-size: 9.5px;
        padding: 4px 12px;
        gap: 6px;
        letter-spacing: .09em;
    }

    .page-hero-dot { width: 5px; height: 5px; }

    .page-hero-title {
        font-size: clamp(24px, 7vw, 32px);
        letter-spacing: -.03em;
        line-height: 1.18;
    }

    .page-hero-title br { display: none; }

    .page-hero-sub {
        font-size: 13px;
        line-height: 1.58;
        max-width: 100%;
    }

    /* ── Hero section ── */
    .hero-section { padding-top: 6px; }

    .hero-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* ── Section title ── */
    .section-title {
        font-size: clamp(17px, 5.5vw, 21px);
        font-weight: 800;
        padding: 0 0 10px 0;
        margin: 0 0 14px 0;
        letter-spacing: -.025em;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: var(--accent-primary);
        background-clip: unset;
        color: var(--accent-primary);
        display: block;
    }

    .section-title::before { display: none !important; }

    .section-title::after {
        left: 0;
        width: 40px;
        height: 3px;
        bottom: 0;
        box-shadow: 0 2px 6px rgba(255, 107, 0, .3);
    }

    /* ── Section header: заголовок + "All news" в одну строку ── */
    .section-header {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        margin-bottom: 0;
    }

    .section-header .section-title {
        margin-bottom: 0;
        padding-bottom: 0;
        flex: 1;
    }

    .section-header .section-title::after { display: none; }

    .view-all-btn {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 100px;
        margin-right: 0;
        flex-shrink: 0;
        white-space: nowrap;
        gap: 6px;
    }

    .view-all-btn svg { width: 12px; height: 12px; }

    /* ── Main news card: теги меньше, footer компактнее ── */
    .main-news-content { padding: 16px; }

    .main-news-tags { gap: 5px; }

    .main-news-tag {
        font-size: 10px;
        padding: 4px 9px;
        letter-spacing: .02em;
    }

    .news-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 14px;
        margin-top: 14px;
    }

    .read-more {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
        font-size: 13px;
    }

    /* ── Excerpt: 3 строки ── */
    .main-news-excerpt p {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    /* ── Category grid: 1 колонка ── */
    .category-news-grid { grid-template-columns: 1fr; }
    .category-news-card { padding: 14px; }

    /* ── News badges ── */
    .news-badge {
        font-size: 9.5px;
        padding: 4px 10px;
        letter-spacing: .06em;
    }

    /* ── News card tags ── */
    .news-tags { gap: 6px; flex-wrap: wrap; }

    .news-tag {
        font-size: 11px;
        padding: 4px 9px;
        border-radius: 7px;
    }

    /* ── News card ── */
    .news-card { padding: 14px; }

    .news-title { font-size: clamp(14px, 4.5vw, 18px); }

    .news-excerpt {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* ── Special cards ── */
    .special-news-section {
        grid-template-columns: 1fr;
        margin-top: 12px;
        margin-bottom: 32px;
        gap: 12px;
    }

    .mining-news-card,
    .regulation-news-card { padding: 18px 16px; }

    .mining-news-header,
    .regulation-news-header { margin-bottom: 12px; }

    .mining-tags,
    .regulation-tags { gap: 6px; }

    .mining-tag,
    .regulation-tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* ── Latest section ── */
    .latest-section { margin-bottom: 32px; }

    /* ── Load more ── */
    .load-more-btn { width: 100%; }

    /* ── Ad banners ── */
    .ad-banner-section .ad-banner-content,
    .ad-banner-section-2 .ad-banner-content,
    .ad-banner-section-3 .ad-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .ad-banner-section .ad-banner-visual,
    .ad-banner-section-2 .ad-banner-visual,
    .ad-banner-section-3 .ad-banner-visual { display: none; }

    .ad-banner-section .ad-banner-cta,
    .ad-banner-section-2 .ad-banner-cta { width: 100%; justify-content: center; }

    .ad-banner-section-2 { margin-top: 0; }

    /* ── Narrow banners ── */
    .ad-banner-section.narrow .ad-banner-content,
    .ad-banner-section-3.narrow .ad-banner-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
        padding: 12px 16px;
    }

    .ad-banner-section.narrow .ad-banner-visual,
    .ad-banner-section-3.narrow .ad-banner-visual {
        display: flex;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .ad-banner-section.narrow .ad-banner-icon,
    .ad-banner-section-3.narrow .ad-banner-icon { border-radius: 10px; }

    .ad-banner-section.narrow .ad-banner-icon svg,
    .ad-banner-section-3.narrow .ad-banner-icon svg { width: 22px; height: 22px; }

    .ad-banner-section.narrow .ad-banner-text,
    .ad-banner-section-3.narrow .ad-banner-text {
        flex: 1;
        min-width: 0;
        gap: 2px;
    }

    .ad-banner-section.narrow .ad-banner-header,
    .ad-banner-section-3.narrow .ad-banner-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .ad-banner-section.narrow .ad-banner-label,
    .ad-banner-section-3.narrow .ad-banner-label {
        margin-bottom: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ad-banner-section.narrow .ad-banner-title,
    .ad-banner-section-3.narrow .ad-banner-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0;
    }

    .ad-banner-section.narrow .ad-banner-description,
    .ad-banner-section-3.narrow .ad-banner-description { display: none; }

    .ad-banner-section.narrow .ad-banner-actions,
    .ad-banner-section-3.narrow .ad-banner-actions { flex-shrink: 0; }

    .ad-banner-section.narrow .ad-banner-cta,
    .ad-banner-section-3.narrow .ad-banner-cta {
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 9px;
        gap: 5px;
        width: auto;
    }

    /* ── Widget ── */
    .widget { padding: 14px; }


    .section-header {
        margin-bottom: 12px; /* добавить */
    }

    /* ── Fix: narrow banner — убираем nowrap с заголовка,
       прячем label в хедере чтобы не давил на title ── */
    .ad-banner-section.narrow .ad-banner-header,
    .ad-banner-section-3.narrow .ad-banner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .ad-banner-section.narrow .ad-banner-label,
    .ad-banner-section-3.narrow .ad-banner-label {
        font-size: 8.5px;
        padding: 2px 8px;
        margin-bottom: 0;
    }

    .ad-banner-section.narrow .ad-banner-title,
    .ad-banner-section-3.narrow .ad-banner-title {
        font-size: 12px;
        white-space: normal;       /* сброс nowrap */
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ══════════════════════════════════════════════════════════
   ОЧЕНЬ МАЛЕНЬКИЕ: ≤ 374px
══════════════════════════════════════════════════════════ */
@media (max-width: 374px) {

    .main-content { padding: 0 10px; }

    .page-hero { padding-top: 16px; }
    .page-hero-inner { padding-bottom: 16px; gap: 7px; }
    .page-hero-title { font-size: 22px; }
    .page-hero-sub { font-size: 12.5px; }

    .section-title { font-size: 17px; }

    .news-badge { font-size: 9px; padding: 3px 8px; }

    .main-news-tag { font-size: 9.5px; padding: 3px 8px; }

    .news-tag { font-size: 10.5px; padding: 3px 8px; }

    .mining-news-title,
    .regulation-news-title { font-size: 16px; }

    .category-news-card { padding: 12px; }
    .news-card { padding: 12px; }
    .widget { padding: 12px; }
}

/* ══════════════════════════════════════════════════════════
   TOUCH DEVICES
══════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
    .news-card,
    .category-news-card,
    .main-news-card,
    .popular-item { -webkit-tap-highlight-color: rgba(255, 107, 0, .1); }

    /* min-height 44px — только для кнопок, НЕ для тегов */
    .read-more,
    .view-all-btn,
    .load-more-btn,
    .fiat-tab,
    .quick-btn,
    .coin-tab,
    .chart-period { min-height: 44px; }

    /* Теги — сбрасываем min-height, чтобы не раздувались */
    .news-tag,
    .main-news-tag,
    .mining-tag,
    .regulation-tag {
        min-height: unset;
        height: auto;
    }

    /* Отключаем hover-трансформации */
    .main-news-card:hover,
    .category-news-card:hover,
    .news-card:hover,
    .popular-item:hover,
    .pulse-coin:hover { transform: none; }

    .main-news-card:hover::before { opacity: 0; }
    .news-card:hover::before,
    .popular-item:hover::before { transform: scaleY(0); }
    .category-news-card:hover::before { transform: scaleY(0); }
}

/* ══════════════════════════════════════════════════════════
   LANDSCAPE MOBILE
══════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
    .main-news-excerpt { line-clamp: 2; -webkit-line-clamp: 2; }
    .hero-section { margin-bottom: 24px; }
    .special-news-section { margin-bottom: 32px; }
}

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

/* ══════════════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════════════ */
@media print {
    .ad-banner-section,
    .ad-banner-section-2,
    .ad-banner-section-3,
    .view-all-btn,
    .load-more-btn,
    .market-pulse { display: none; }

    .main-content { padding: 0; }

    .news-card,
    .category-news-card,
    .main-news-card {
        box-shadow: none;
        border: 1px solid var(--border-light);
        page-break-inside: avoid;
    }

    .hero-grid,
    .latest-grid,
    .special-news-section { grid-template-columns: 1fr; }
}