/* ═══════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════ */
.breadcrumb {
    max-width: 1280px;
    margin: 14px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--accent2);
}

.breadcrumb .sep {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.layout {
    max-width: 1280px;
    margin: 28px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════
   ARTICLE HEADER
═══════════════════════════════════════════════════════ */
.article-header {
    margin-bottom: 24px;
}

.article-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cat-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.cat-mlbb   { background: linear-gradient(135deg,#1e40af,#3b82f6); color:#fff; }
.cat-tierlist { background: linear-gradient(135deg,var(--accent),#5b21b6); color:#fff; }
.cat-hot    { background: linear-gradient(135deg,var(--orange),#dc2626); color:#fff; }

.article-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.article-subtitle {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}

/* ═══════════════════════════════════════════════════════
   META BAR
═══════════════════════════════════════════════════════ */
.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.author-info .name {
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
    line-height: 1.2;
}

.author-info .role {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

.meta-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

.meta-item {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.article-reading {
    font-size: 12px;
    color: var(--accent2);
    font-weight: 800;
}

.updated-badge {
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.translation-credit {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   SHARE BAR
═══════════════════════════════════════════════════════ */
.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: transform .2s, filter .2s, box-shadow .2s;
    text-decoration: none;
}

.share-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.share-twitter  { background:#1DA1F2; color:#fff; }
.share-reddit   { background:#FF4500; color:#fff; }
.share-telegram { background:#0088cc; color:#fff; }
.share-whatsapp { background:#25D366; color:#fff; }
.share-tiktok   { background:#000; color:#fff; border:1px solid #333; }
.share-discord  { background:#5865F2; color:#fff; }
.share-copy     { background:var(--surface2); color:var(--text); border:1px solid var(--border); }

.share-count {
    background: var(--surface2);
    color: var(--accent2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--border);
    font-weight: 800;
}

/* ═══════════════════════════════════════════════════════
   HERO IMAGE
═══════════════════════════════════════════════════════ */
.article-hero {
    margin-bottom: 30px;
    position: relative;
}

.article-hero-img {
    width: 100%;
    background: linear-gradient(135deg,#1e1b4b 0%,#3730a3 50%,#7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-placeholder {
    text-align: center;
}

.hero-placeholder .icon {
    font-size: 64px;
    margin-bottom: 14px;
    display: block;
}

.hero-placeholder p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
}

.hero-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg,var(--accent),var(--orange));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .3px;
    backdrop-filter: blur(4px);
}

.update-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(34,197,94,.9);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hero-caption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ARTICLE BODY
═══════════════════════════════════════════════════════ */
.article-body {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.article-body > * + * {
    margin-top: 1em;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.2px;
    position: relative;
}


.article-body h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, var(--primary), var(--primary));
    border-radius: 2px;
    flex-shrink: 0;
}

.article-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 28px 0 10px;
    letter-spacing: -.1px;
}

.article-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--muted);
}

.article-body p {
    margin-bottom: 18px;
    color: #C8C8E0;
    line-height: 1.85;
    font-size: 15.5px;
}

/* Первый параграф крупнее */
.article-body > p:first-of-type {
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    font-weight: 400;
}

.article-body a {
    color: var(--accent2);
    text-decoration: underline;
    text-decoration-color: rgba(139,92,246,.4);
    text-underline-offset: 3px;
    transition: color .2s, text-decoration-color .2s;
}

.article-body a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.article-body ul,
.article-body ol {
    margin: 4px 0 18px 0;
    padding-left: 0;
    list-style: none;
}

.article-body ul li,
.article-body ol li {
    padding: 6px 0 6px 24px;
    color: #C8C8E0;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.article-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 13px;
    top: 8px;
}

.article-body ol {
    counter-reset: ol-counter;
}

.article-body ol li {
    counter-increment: ol-counter;
}

.article-body ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    color: var(--accent2);
    font-size: 12px;
    font-weight: 900;
    top: 7px;
    width: 18px;
    height: 18px;
    background: rgba(139,92,246,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    text-align: center;
}

/* Изображения в контенте */
.article-body img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin: 10px 0;
    display: block;
}

/* Инлайн код */
.article-body code {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--accent2);
    font-size: 13px;
    padding: 2px 7px;
    border-radius: 5px;
    font-family: 'JetBrains Mono', monospace;
}

/* Блок кода */
.article-body pre {
    background: #0d0d1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.7;
}

/* Таблицы */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-body th {
    background: var(--surface2);
    color: var(--text);
    font-weight: 800;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.article-body td {
    padding: 11px 16px;
    color: #C8C8E0;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.article-body tr:hover td {
    background: rgba(255,255,255,.02);
}

/* ═══════════════════════════════════════════════════════
   PULL QUOTE
═══════════════════════════════════════════════════════ */
.pull-quote {
    border-left: 4px solid var(--orange);
    padding: 20px 26px;
    margin: 30px 0;
    background: linear-gradient(135deg,rgba(30,27,75,.6),rgba(45,26,74,.6));
    border-radius: 0 16px 16px 0;
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--orange);
    opacity: .2;
    font-family: Georgia, serif;
    line-height: 1;
}

.pull-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text) !important;
    margin: 0 !important;
    line-height: 1.65;
    font-weight: 700;
    position: relative;
}

.pull-quote cite {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    display: block;
    font-style: normal;
    font-weight: 600;
}

.pull-quote cite::before {
    content: '— ';
}

/* ═══════════════════════════════════════════════════════
   STATS BOX
═══════════════════════════════════════════════════════ */
.stats-box {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    margin: 24px 0;
}

.stats-box h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color .2s;
}

.stat-item:hover {
    border-color: var(--accent);
}

.stat-item .val {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent2);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item .lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   TIER LIST
═══════════════════════════════════════════════════════ */
.tier-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin: 28px 0;
}

.tier-list h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.tier-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 10px;
    transition: background .2s;
}

.tier-row:hover {
    background: rgba(255,255,255,.03);
}

.tier-label {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}

.tier-s { background: linear-gradient(135deg,#dc2626,#991b1b); color:#fff; }
.tier-a { background: linear-gradient(135deg,#d97706,#92400e); color:#fff; }
.tier-b { background: linear-gradient(135deg,#16a34a,#14532d); color:#fff; }
.tier-c { background: linear-gradient(135deg,#2563eb,#1e3a8a); color:#fff; }

.tier-heroes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-chip {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 12px;
    padding: 6px 13px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: border-color .2s, color .2s;
}

.hero-chip:hover        { border-color: var(--accent); color: var(--accent2); }
.hero-chip.new::after   { content:'NEW'; font-size:9px; background:var(--orange); color:#fff; padding:1px 5px; border-radius:4px; margin-left:3px; }
.hero-chip.up::after    { content:'↑'; font-size:12px; color:var(--green); margin-left:2px; }
.hero-chip.down::after  { content:'↓'; font-size:12px; color:var(--red); margin-left:2px; }

/* ═══════════════════════════════════════════════════════
   INLINE AD
═══════════════════════════════════════════════════════ */
.ad-inline {
    background: var(--surface2);
    border: 1px dashed var(--border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.ad-inline .ad-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.ad-inline .ad-slot {
    background: var(--bg);
    border-radius: 8px;
    padding: 30px;
    color: var(--muted);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   TAGS
═══════════════════════════════════════════════════════ */
.tags-section {
    margin: 32px 0 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tags-section h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--tag-bg);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    transition: border-color .2s, color .2s, transform .2s;
    font-weight: 700;
    cursor: pointer;
}

.tag:hover          { border-color:var(--accent); color:var(--accent2); transform:translateY(-1px); text-decoration:none; }
.tag.hot            { border-color:var(--orange); color:var(--orange); }
.tag.trending       { border-color:var(--green);  color:var(--green);  }

/* ═══════════════════════════════════════════════════════
   AUTHOR BOX
═══════════════════════════════════════════════════════ */
.author-box {
    background: linear-gradient(135deg,var(--surface),var(--surface2));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    margin: 30px 0;
    display: flex;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

/* Декоративный градиент фон */
.author-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(139,92,246,.08) 0%, transparent 70%);
    pointer-events: none;
}

.author-box-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid var(--border);
    overflow: hidden;
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-box-info .name {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 3px;
    color: var(--text);
}

.author-box-info .handle {
    font-size: 12px;
    color: var(--accent2);
    font-weight: 700;
    margin-bottom: 10px;
}

.author-box-info .bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.author-social {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.author-social a {
    font-size: 12px;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 5px 13px;
    border-radius: 20px;
    font-weight: 700;
    transition: color .2s, border-color .2s;
    text-decoration: none;
}

.author-social a:hover {
    color: var(--accent2);
    border-color: var(--accent);
}

.author-stats {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.author-stat .val {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
}

.author-stat .lbl {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* ═══════════════════════════════════════════════════════
   RELATED POSTS
═══════════════════════════════════════════════════════ */
.related-section {
    margin: 34px 0;
}

.related-section h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-section h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom,var(--accent),var(--orange));
    border-radius: 2px;
    flex-shrink: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: block;
    color: inherit;
    text-decoration: none;
}

.related-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.related-thumb {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    overflow: hidden;
    position: relative;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-thumb.mlbb  { background: linear-gradient(135deg,#1e1b4b,#3730a3); }
.related-thumb.ff    { background: linear-gradient(135deg,#1c1a00,#2a2500); }
.related-thumb.pubg  { background: linear-gradient(135deg,#1a0d00,#2e1500); }

.related-body {
    padding: 14px;
}

.related-cat {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.related-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: center;
}



/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 640px) {
    .article-title {
        font-size: 24px;
    }

    .article-hero-img {
        height: 240px;
    }

    .article-meta {
        gap: 10px;
    }

    .meta-divider {
        display: none;
    }

    .share-bar {
        gap: 6px;
    }

    .share-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }

    .author-stats {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
