/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-page: #0D0F14;
    --bg-card: #13161E;
    --bg-card-hover: #181C26;
    --bg-surface: #1A1E28;
    --bg-surface2: #1F2433;
    --border: #252A38;
    --border-light: #2E3447;

    --text-primary: #E8ECF5;
    --text-secondary: #8B92A8;
    --text-muted: #5A6278;

    --accent-orange: #F7931A;
    --accent-blue: #3B82F6;
    --accent-green: #22C55E;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-card: 0 2px 12px rgba(0,0,0,0.4);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.5);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-orange); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: #0A0C10;
    border-bottom: 1px solid var(--border);
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ticker-label {
    background: var(--accent-orange);
    color: #000;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    gap: 0;
}

.ticker-inner:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    border-right: 1px solid var(--border);
    height: 36px;
}

.ticker-coin { color: var(--text-secondary); font-weight: 500; }
.ticker-price { color: var(--text-primary); font-weight: 600; }
.ticker-change.up { color: var(--accent-green); }
.ticker-change.down { color: var(--accent-red); }
.ticker-loading { padding: 0 24px; color: var(--text-muted); font-size: 12px; font-family: var(--font-mono); }

/* ===== HEADER ===== */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 36px;
    z-index: 999;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--text-primary) !important;
}

.logo-icon {
    font-size: 22px;
    color: var(--accent-orange);
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.logo-text strong {
    font-weight: 700;
    color: var(--accent-orange);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.header-nav a {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-search {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
    display: flex;
    align-items: center;
}

.btn-search:hover { background: var(--bg-surface); color: var(--text-primary); }

.btn-newsletter {
    background: var(--accent-orange);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-newsletter:hover { opacity: 0.9; }

/* ===== BREAKING NEWS ===== */
.breaking-bar {
    background: linear-gradient(135deg, #1a0505 0%, #0D0F14 60%);
    border-bottom: 1px solid rgba(239,68,68,0.2);
    padding: 8px 0;
    overflow: hidden;
}

.breaking-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breaking-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-red);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-display);
}

.breaking-text {
    font-size: 12.5px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: scroll-text 25s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== MAIN ===== */
.site-main { padding: 32px 0 48px; }

/* ===== DESTAQUE SECTION ===== */
.destaque-section { margin-bottom: 24px; }

.destaque-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.destaque-principal {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
}

.destaque-img-wrap {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.destaque-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

.btc-bg { background: linear-gradient(135deg, #1a0f00 0%, #0D0F14 50%, #1a0f00 100%); }
.ethereum-bg { background: linear-gradient(135deg, #0a0d2e 0%, #0D0F14 50%, #0a0d2e 100%); }
.regulacao-bg { background: linear-gradient(135deg, #1a0505 0%, #0D0F14 50%, #1a0505 100%); }
.altcoins-bg { background: linear-gradient(135deg, #001a16 0%, #0D0F14 50%, #001a16 100%); }
.defi-bg { background: linear-gradient(135deg, #100a1f 0%, #0D0F14 50%, #100a1f 100%); }
.bitcoin-bg { background: linear-gradient(135deg, #1a0f00 0%, #0D0F14 50%, #1a0f00 100%); }
.web3-bg { background: linear-gradient(135deg, #041524 0%, #0D0F14 50%, #041524 100%); }
.mercado-bg { background: linear-gradient(135deg, #041a0a 0%, #0D0F14 50%, #041a0a 100%); }
.mineracao-bg { background: linear-gradient(135deg, #141414 0%, #0D0F14 50%, #141414 100%); }

.destaque-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-orange);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 3px;
    font-family: var(--font-display);
}

.destaque-tag.small { font-size: 9px; padding: 2px 7px; }

.categoria-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 3px;
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.categoria-badge.small { font-size: 9px; padding: 2px 7px; bottom: 10px; left: 10px; position: absolute; }
.categoria-badge.micro { position: static; font-size: 9px; padding: 2px 7px; display: inline-flex; }

.destaque-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.destaque-titulo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.destaque-titulo a:hover { color: var(--accent-orange); }

.destaque-resumo {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.destaque-secundarios {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
}

.destaque-card {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destaque-card-img {
    position: relative;
    aspect-ratio: 16/6;
    overflow: hidden;
}

.destaque-img-placeholder.small {
    font-size: 12px;
}

.destaque-card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destaque-card-titulo {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.destaque-card-titulo a:hover { color: var(--accent-orange); }

/* ===== META INFO ===== */
.meta-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.meta-info.small { font-size: 11.5px; }
.meta-autor { color: var(--text-secondary); font-weight: 500; }
.meta-sep { color: var(--text-muted); }
.meta-tempo { color: var(--text-muted); }

/* ===== MARKET STRIP ===== */
.market-strip {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    overflow: hidden;
}

.market-strip-inner {
    display: flex;
    align-items: center;
    height: 52px;
}

.market-strip-label {
    background: var(--bg-surface2);
    border-right: 1px solid var(--border);
    padding: 0 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-family: var(--font-display);
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.market-coins {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex: 1;
    height: 100%;
}

.market-coin-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid var(--border);
    height: 100%;
    flex-shrink: 0;
    transition: background 0.15s;
    cursor: pointer;
}

.market-coin-item:hover { background: var(--bg-card); }
.mc-symbol { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.mc-price { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-primary); }
.mc-change { font-family: var(--font-mono); font-size: 11px; font-weight: 500; }
.mc-change.up { color: var(--accent-green); }
.mc-change.down { color: var(--accent-red); }
.market-loading { padding: 0 20px; font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

/* ===== CONTENT LAYOUT ===== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    margin-bottom: 48px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.section-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #000;
}

/* ===== NEWS GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.news-card {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: background 0.15s;
}

.news-card:hover { background: var(--bg-card-hover); }

.news-card-img {
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
}

.news-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-titulo {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.news-card-titulo a:hover { color: var(--accent-orange); }

.news-card-resumo {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== LOAD MORE ===== */
.load-more-wrap { text-align: center; }

.btn-load-more {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 11px 32px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
}

.btn-load-more:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ===== SIDEBAR ===== */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.widget-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: var(--font-mono);
}

.widget-badge.live { color: var(--accent-green); }

.widget-link {
    display: block;
    text-align: center;
    padding: 11px;
    font-size: 12px;
    color: var(--accent-orange);
    border-top: 1px solid var(--border);
    font-weight: 500;
    transition: background 0.15s;
}

.widget-link:hover { background: var(--bg-surface); color: var(--accent-orange); }

/* ===== PRICE TABLE ===== */
.price-table { padding: 4px 0; }
.price-loading { padding: 20px 16px; font-size: 12px; color: var(--text-muted); text-align: center; font-family: var(--font-mono); }

.price-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-surface); }

.price-rank {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.price-coin-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.price-coin-name { font-size: 13px; font-weight: 600; font-family: var(--font-display); }
.price-coin-sym { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }
.price-value { font-family: var(--font-mono); font-size: 13px; font-weight: 600; text-align: right; }

.price-change {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-align: right;
    min-width: 52px;
    padding: 3px 6px;
    border-radius: 4px;
}

.price-change.up { color: var(--accent-green); background: rgba(34,197,94,0.08); }
.price-change.down { color: var(--accent-red); background: rgba(239,68,68,0.08); }

/* ===== MAIS LIDAS ===== */
.mais-lidas-list { padding: 6px 0; }

.mais-lidas-item {
    display: flex;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}

.mais-lidas-item:last-child { border-bottom: none; }
.mais-lidas-item:hover { background: var(--bg-surface); }

.mais-lidas-num {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--border-light);
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.mais-lidas-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.mais-lidas-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.mais-lidas-titulo { font-size: 12.5px; font-weight: 500; line-height: 1.4; color: var(--text-primary); transition: color 0.15s; }
.mais-lidas-item:hover .mais-lidas-titulo { color: var(--accent-orange); }
.mais-lidas-tempo { font-size: 10.5px; color: var(--text-muted); font-family: var(--font-mono); }

/* ===== FEAR & GREED ===== */
.fear-greed-widget { padding: 16px; }

.fg-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

#gaugeCanvas { max-width: 100%; }

.fg-value {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-top: -8px;
}

.fg-label {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.fg-scale {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    gap: 2px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section { margin-bottom: 48px; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cat-color, var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.2s;
}

.category-card:hover {
    border-color: var(--cat-color, var(--accent-orange));
    background: var(--bg-card-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.category-card:hover::after { transform: scaleX(1); }

.category-icon {
    font-size: 22px;
    line-height: 1;
    color: var(--cat-color, var(--accent-orange));
}

.category-name {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.category-count {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.15s;
}

.footer-social a:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.footer-nav h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.15s;
}
.footer-nav li a:hover { color: var(--accent-orange); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11px; color: var(--border-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .destaque-grid { grid-template-columns: 1fr; }
    .destaque-secundarios { flex-direction: row; }
    .destaque-card { flex: 1; }
    .content-layout { grid-template-columns: 1fr; }
    .news-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .header-nav a { padding: 0 10px; font-size: 12px; }
}

@media (max-width: 768px) {
    .destaque-secundarios { flex-direction: column; }
    .news-grid { grid-template-columns: 1fr; }
    .news-sidebar { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .header-nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .destaque-titulo { font-size: 20px; }
    .breaking-text { font-size: 11px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .ticker-bar { top: 0; }
    .site-header { top: 36px; }
}

/* ===== PÁGINA DE NOTÍCIA ===== */
.article-main { padding: 42px 0 70px; }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 360px;
    gap: 34px;
    align-items: start;
}
.article-page {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-card);
}
.article-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(247,147,26,0.14);
    color: var(--accent-orange);
    border: 1px solid rgba(247,147,26,0.35);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.article-page h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.article-subtitle {
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 22px;
}
.article-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    margin-bottom: 26px;
    color: var(--text-secondary);
    font-size: 13px;
}
.article-meta-row strong { color: var(--text-primary); }
.reading-time {
    font-family: var(--font-mono);
    color: var(--text-muted);
    white-space: nowrap;
}
.article-hero-card {
    background: linear-gradient(135deg, #07080b, #141922);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}
.brand-composition {
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 38px;
}
.bitmarine-logo-news {
    width: min(360px, 58%);
    max-height: 160px;
    object-fit: contain;
}
.instagram-logo-news {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    filter: drop-shadow(0 16px 35px rgba(0,0,0,.45));
}
.platform-divider {
    width: 1px;
    height: 90px;
    background: var(--border-light);
}
.article-hero-card figcaption {
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(0,0,0,.2);
}
.article-page p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 18px;
}
.telegram-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-blue);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin: 24px 0;
}
.telegram-box strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.telegram-box a {
    display: block;
    color: #7DD3FC;
    font-family: var(--font-mono);
    font-size: 15px;
    padding: 6px 0;
}
.article-alert-box {
    background: rgba(247,147,26,0.10);
    border: 1px solid rgba(247,147,26,0.30);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin-top: 28px;
}
.article-alert-box strong { color: var(--text-primary); }
.article-sidebar { position: sticky; top: 125px; display: grid; gap: 18px; }
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
}
.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.side-news-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.side-news-item:last-child { border-bottom: 0; padding-bottom: 0; }
.side-news-item span {
    font-family: var(--font-display);
    color: var(--accent-orange);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.side-news-item p {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}
.latest-mini-card {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.latest-mini-card:last-child { border-bottom: 0; padding-bottom: 0; }
.latest-mini-card span {
    color: var(--accent-orange);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.latest-mini-card h4 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .article-main { padding: 24px 0 46px; }
    .article-page { padding: 22px; }
    .article-subtitle { font-size: 16px; }
    .article-page p { font-size: 16px; }
    .article-meta-row { flex-direction: column; }
    .brand-composition { min-height: 210px; gap: 18px; padding: 26px 18px; }
    .platform-divider { display: none; }
    .bitmarine-logo-news { width: 68%; }
    .instagram-logo-news { width: 64px; height: 64px; }
    .article-sidebar { grid-template-columns: 1fr; }
}
