/*
Theme Name: fragwire.media - Дочерняя тема
Author: Alfataks
Author URI: https://t.me/alfataks
Version: 1.0.0
Template: respawn.media
Description: Required plugins: Yoast SEO, ACF
*/
:root {
    --primary: #00FF87;
    --primary-dark: #00CC66;
    --primary-dim: rgba(0, 255, 135, 0.15);
    --bg: #0A0A0A;
    --bg2: #0F0F0F;
    --bg3: #141414;
    --card: #111111;
    --border: #1E1E1E;
    --border-bright: #2A2A2A;
    --text: #F0F0F0;
    --text-muted: #666;
    --red: #FF3355;
    --yellow: #FFD600;
    --blue: #0080FF;
    --orange: #FF7700;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

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

.tag {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tag-cs2 {
    background: var(--red);
    color: #fff;
}

.tag-val {
    background: #FF4655;
    color: #fff;
}

.tag-transfer {
    background: var(--primary);
    color: #000;
}

.tag-breaking {
    background: var(--red);
    color: #fff;
    animation: flashRed 1.5s infinite;
}

.tag-rumour {
    background: var(--yellow);
    color: #000;
}

.tag-confirmed {
    background: var(--primary);
    color: #000;
}

.tag-drama {
    background: var(--orange);
    color: #fff;
}

.tag-analysis {
    background: #1A1A1A;
    border: 1px solid var(--primary);
    color: var(--primary);
}

@keyframes flashRed {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

.section-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    padding-left: 12px;
    border-left: 3px solid var(--primary);
    margin-bottom: 16px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #222;
    font-family: 'Rajdhani', sans-serif;
}

.card-img {
    height: 160px;
}

.card-img-hero {
    height: 420px;
}

.card-body {
    padding: 14px;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 7px 0 5px;
}

.card-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

/* MOCKUP LABEL */
.mockup-label {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: var(--primary);
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 9999;
}

/* TOP BAR */
.topbar {
    background: #050505;
    border-bottom: 1px solid var(--border);
    padding: 5px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

.topbar-live {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.topbar-right {
    display: flex;
    gap: 16px;
}

/* BREAKING TICKER */
.ticker {
    background: var(--red);
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background: #8B0000;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.ticker-item::before {
    content: '▶';
    margin-right: 10px;
    font-size: 8px;
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* HEADER */
header {
    background: var(--bg2);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.logo span {
    color: var(--primary);
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 0;
    flex: 1;
}

.nav-menu a {
    padding: 0 14px;
    height: 64px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
    border-bottom-color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.lang-switcher {
    display: flex;
    gap: 3px;
}

.lang-btn {
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-family: inherit;
}

.lang-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.search-btn {
    padding: 6px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
}

/* GAME FILTER */
.game-filter {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.game-filter-inner {
    display: flex;
    overflow-x: auto;
}

.gf-item {
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.gf-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.gf-item:hover {
    color: var(--text);
}

/* LIVE SCORES */
.live-bar {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.live-bar-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    overflow-x: auto;
}

.live-label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}

.match-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg);
    white-space: nowrap;
}

.match-pill.live-match {
    border-color: var(--red);
}

.match-teams {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.match-score {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary);
}

.match-live-tag {
    font-size: 9px;
    font-weight: 900;
    color: var(--red);
    background: rgba(255, 51, 85, 0.15);
    padding: 2px 5px;
    border-radius: 2px;
    animation: flashRed 1.2s infinite;
}

.match-event {
    font-size: 10px;
    color: var(--text-muted);
}

/* HERO / MAIN LAYOUT */
.hero {
    padding: 20px 0;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.hero-featured {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hero-featured-img {
    height: 400px;
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A, #0A0A0A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 900;
    color: #1A1A1A;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, transparent 100%);
}

.hero-breaking-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.hero-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 12px;
}

.hero-side-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    height: 92px;
    flex-direction: row;
}

.side-card-img {
    width: 150px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #222;
}

.side-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.side-card-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    margin: 5px 0 4px;
}

.side-card-meta {
    font-size: 10px;
    color: var(--text-muted);
}

/* MAIN LAYOUT */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    padding: 24px 0 40px;
}

/* BREAKING NEWS BLOCK */
.breaking-block {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.breaking-header {
    background: var(--red);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-header-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breaking-list {}

.breaking-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.breaking-item:last-child {
    border: none;
}

.breaking-time {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: monospace;
}

.breaking-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.breaking-text a {
    color: var(--text);
}

.breaking-text a:hover {
    color: var(--primary);
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.news-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.news-card:hover {
    border-color: var(--primary);
}

.news-img {
    height: 150px;
    background: linear-gradient(135deg, #111, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #1E1E1E;
}

.news-body {
    padding: 12px;
}

.news-title {
    font-size: 13px;
    font-weight: 700;
    margin: 7px 0 5px;
    line-height: 1.4;
}

.news-meta {
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
}

/* TRANSFER HUB */
.transfer-hub {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.transfer-hub-header {
    background: var(--primary);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-hub-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
}

.transfer-hub-count {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 2px;
}

.transfer-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.transfer-row:last-child {
    border: none;
}

.transfer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: var(--text-muted);
}

.transfer-info {}

.transfer-player-name {
    font-size: 14px;
    font-weight: 800;
}

.transfer-move {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.transfer-arrow {
    color: var(--primary);
    font-weight: 900;
}

.transfer-game-tag {
    font-size: 9px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 2px;
    font-weight: 700;
    color: var(--text-muted);
}

.transfer-status {}

.status-confirmed {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    padding: 3px 8px;
    border-radius: 2px;
}

.status-rumour {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.3);
    padding: 3px 8px;
    border-radius: 2px;
}

.status-denied {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--red);
    background: rgba(255, 51, 85, 0.1);
    border: 1px solid rgba(255, 51, 85, 0.3);
    padding: 3px 8px;
    border-radius: 2px;
}

/* RANKINGS */
.rank-table {
    width: 100%;
    border-collapse: collapse;
}

.rank-table th {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.rank-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.rank-table tr:last-child td {
    border: none;
}

.rank-table tr:hover td {
    background: var(--bg3);
}

.rank-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--text-muted);
}

.rank-up {
    color: var(--primary);
    font-size: 11px;
}

.rank-down {
    color: var(--red);
    font-size: 11px;
}

.rank-same {
    color: var(--text-muted);
    font-size: 11px;
}

/* SIDEBAR */
.widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.widget-header {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-body {
    padding: 14px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-cloud-item {
    padding: 4px 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
}

.tag-cloud-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* TRENDING */
.trending-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.trending-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--border);
    width: 28px;
    flex-shrink: 0;
    line-height: 1;
    font-family: 'Impact', sans-serif;
}

.trending-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.trending-meta {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* UPCOMING MATCHES */
.match-widget-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.match-widget-item:last-child {
    border: none;
}

.match-widget-teams {
    font-size: 12px;
    font-weight: 700;
}

.match-widget-time {
    font-size: 10px;
    color: var(--primary);
    font-family: monospace;
}

.match-widget-tournament {
    font-size: 10px;
    color: var(--text-muted);
}

/* AD */
.ad-slot {
    background: var(--bg3);
    border: 1px dashed var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ad-slot-banner {
    height: 80px;
    margin: 12px 0;
}

.ad-slot-sq {
    height: 240px;
    margin: 12px 0;
}

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(135deg, #0A0A0A, #141414);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.newsletter h3 {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.newsletter p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.nl-form {
    display: flex;
    gap: 8px;
}

.nl-input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 8px 12px;
    color: var(--text);
    font-size: 12px;
}

.btn-subscribe {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 2px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RELATED */
.related-block {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 16px;
    margin-top: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.related-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.related-img {
    height: 80px;
    background: linear-gradient(135deg, #111, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #222;
}

.related-body {
    padding: 8px 10px;
}

.related-title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

/* HORIZONTAL LIST */
.article-list-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.article-list-img {
    width: 110px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 3px;
    background: linear-gradient(135deg, #111, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #1E1E1E;
}

.article-list-title {
    font-size: 13px;
    font-weight: 700;
    margin: 4px 0;
}

.article-list-meta {
    font-size: 10px;
    color: var(--text-muted);
}

/* PAGINATION */
.pagination {
    display: flex;
    gap: 5px;
    margin-top: 28px;
}

.page-btn {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
}

.page-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* FOOTER */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.footer-logo {
    font-family: 'Impact', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: var(--text-muted);
}

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

.footer-col h4 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.footer-tag {
    font-size: 10px;
    color: var(--text-muted);
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.footer-tag:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.page-numbers {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
}

.live-bar-inner::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    .trending-item::before {
    display: none;
}