/*
Theme Name: t24amp-v2
Theme URI: https://taraftarium24pro.com
Author: Taraftarium24
Description: Taraftarium24 canlı maç izleme teması 
Version: 4.3
Text Domain: taraftarium24
*/

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

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #151c2c;
    --bg-card-hover: #1a2236;
    --bg-header: #0d1220;
    --accent-green: #00e676;
    --accent-red: #ff1744;
    --accent-blue: #2979ff;
    --accent-orange: #ff9100;
    --accent-cyan: #00e5ff;
    --text-primary: #ffffff;
    --text-secondary: #8892a4;
    --text-muted: #4a5568;
    --border-color: #1e293b;
    --border-light: #2d3748;
    --live-pulse: #ff1744;
    --sidebar-width: 320px;
    --chat-width: 300px;
    --header-height: 60px;
    --topbar-height: 36px;
    --nav-height: 50px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%); height: var(--topbar-height); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border-color); overflow: hidden; position: relative; }
.top-bar-text { color: var(--accent-cyan); font-size: 12px; letter-spacing: 0.5px; white-space: nowrap; animation: slideText 20s linear infinite; }
@keyframes slideText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ============================================
   HEADER
   ============================================ */
.site-header { background: var(--bg-header); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: var(--header-height); }
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo .custom-logo-link, .site-logo .custom-logo-link img, .custom-logo-link { display: inline-block; line-height: 0; }
.custom-logo-link img, .site-logo .custom-logo { height: 48px; width: auto; max-width: 240px; object-fit: contain; }
.site-logo img { height: 48px; width: auto; max-width: 240px; object-fit: contain; }
.site-logo .logo-text { display: flex; align-items: center; gap: 0; position: relative; }
.logo-icon { font-size: 20px; margin-right: 8px; filter: drop-shadow(0 0 6px rgba(0,229,255,0.4)); }
.logo-main { font-size: 20px; font-weight: 900; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; text-shadow: 0 0 20px rgba(0,229,255,0.15); font-style: italic; }
.logo-num { font-size: 24px; font-weight: 900; letter-spacing: -1px; background: linear-gradient(135deg, #00e5ff, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; position: relative; top: -1px; margin-left: 2px; text-shadow: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 16px; font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s ease; position: relative; white-space: nowrap; }
.main-nav a .nav-icon { font-size: 18px; opacity: 0.7; transition: opacity 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--accent-cyan); }
.main-nav a:hover .nav-icon, .main-nav a.active .nav-icon { opacity: 1; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--accent-cyan); transition: width 0.3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 80%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-contact { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-secondary); font-size: 12px; transition: all 0.2s ease; cursor: pointer; }
.header-contact:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.contact-dropdown { position: relative; }
.contact-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 6px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; min-width: 160px; z-index: 2000; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.contact-menu.open { display: block; }
.contact-menu-item { display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--text-primary); text-decoration: none; font-size: 13px; transition: background 0.15s ease; }
.contact-menu-item:hover { background: rgba(255,255,255,0.06); }
.contact-modal { display: none; position: fixed; bottom: 56px; left: 0; right: 0; z-index: 2000; padding: 12px; }
.contact-modal.open { display: block; }
.contact-modal-inner { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; box-shadow: 0 -4px 24px rgba(0,0,0,0.5); }
.contact-modal-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; text-align: center; }
.contact-modal-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: var(--text-primary); text-decoration: none; font-size: 14px; border-radius: 8px; transition: background 0.15s ease; margin-bottom: 4px; }
.contact-modal-item:hover { background: rgba(255,255,255,0.06); }
.contact-modal-close { width: 100%; padding: 10px; margin-top: 8px; background: rgba(255,255,255,0.06); border: none; border-radius: 8px; color: var(--text-secondary); font-size: 13px; cursor: pointer; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; padding: 4px; }

/* ============================================
   MAIN LAYOUT - GRID
   ============================================ */
.main-content-wrapper {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    gap: 2px;
    background: var(--border-color);
}

/* SAĞ TARAF: grid ile reklam 2 kolonu kaplar, player+chat yan yana */
.content-right-wrapper {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr var(--chat-width);
    grid-template-rows: auto 1fr;
}

.menu-banner-area {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #1a1a2e;
}

.content-center {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-right {
    grid-column: 2;
    grid-row: 2;
    width: var(--chat-width);
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: var(--header-height);
    max-height: calc(100vh - var(--header-height) - var(--topbar-height));
    overflow: hidden;
}

/* REKLAM PC/MOBİL */
.banner-pc-wrap { display: flex; justify-content: center; align-items: center; }
.banner-mobile-wrap { display: none; justify-content: center; align-items: center; }

/* LEFT SIDEBAR */
.sidebar-left { width: var(--sidebar-width); background: var(--bg-secondary); overflow-y: auto; max-height: calc(100vh - var(--header-height) - var(--topbar-height)); position: sticky; top: var(--header-height); flex-shrink: 0; }
.sidebar-left::-webkit-scrollbar { width: 4px; }
.sidebar-left::-webkit-scrollbar-track { background: var(--bg-secondary); }
.sidebar-left::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
.sidebar-sticky-top { position: sticky; top: 0; z-index: 10; background: var(--bg-secondary); }
.sidebar-header { padding: 0; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%); }
.sidebar-tabs { display: flex; gap: 0; flex: 1; }
.sidebar-tabs button { flex: 1; padding: 14px 12px; background: transparent; border: none; color: var(--text-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease; border-bottom: 2px solid transparent; position: relative; }
.sidebar-tabs button.active { color: var(--accent-cyan); border-bottom-color: var(--accent-cyan); background: rgba(0,229,255,0.04); }
.sidebar-tabs button:hover { color: var(--text-primary); background: rgba(255,255,255,0.02); }
.match-search { padding: 10px 14px; border-bottom: 1px solid var(--border-color); background: rgba(0,0,0,0.15); }
.match-search input { width: 100%; padding: 9px 14px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-primary); font-size: 12px; font-weight: 500; outline: none; transition: all 0.2s ease; }
.match-search input::placeholder { color: var(--text-muted); font-weight: 400; }
.match-search input:focus { border-color: var(--accent-cyan); box-shadow: 0 0 0 2px rgba(0,229,255,0.1); }
.filter-tabs { display: flex; padding: 8px 14px; gap: 6px; border-bottom: 1px solid var(--border-color); }
.filter-tabs button { padding: 5px 12px; border-radius: 20px; border: none; font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; background: rgba(255,255,255,0.05); color: var(--text-secondary); }
.filter-tabs button.active { background: var(--accent-red); color: white; }
.filter-tabs button:hover:not(.active) { background: rgba(255,255,255,0.1); }
.league-group { border-bottom: 1px solid var(--border-color); }
.league-header { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255,255,255,0.02); font-size: 11px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.3px; }
.league-header img { width: 16px; height: 16px; border-radius: 2px; }
.popular-matches { border-bottom: 2px solid var(--border-color); }
.match-item.popular { background: rgba(0,230,118,0.10) !important; border-left: 3px solid var(--accent-green) !important; }
.match-item.popular:hover { background: rgba(0,230,118,0.18) !important; }
.match-item { display: flex; align-items: center; padding: 11px 16px; cursor: pointer; transition: all 0.2s ease; border-bottom: 1px solid rgba(255,255,255,0.04); position: relative; color: var(--text-primary); gap: 10px; }
a.match-item { text-decoration: none; }
.match-item:hover { background: linear-gradient(90deg, rgba(0,229,255,0.06) 0%, rgba(0,229,255,0.02) 100%); padding-left: 18px; }
.match-item.active { background: linear-gradient(90deg, rgba(0,229,255,0.1) 0%, rgba(0,229,255,0.03) 100%); border-left: 3px solid var(--accent-cyan); }
.match-item.live { background: linear-gradient(90deg, rgba(255,23,68,0.06) 0%, transparent 100%); }
.match-item.live:hover { background: linear-gradient(90deg, rgba(255,23,68,0.1) 0%, rgba(255,23,68,0.03) 100%); }
.match-play { flex-shrink: 0; font-size: 8px; color: var(--text-muted); transition: all 0.2s ease; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.04); }
.sport-icon { flex-shrink: 0; width: 20px; height: 20px; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); border-radius: 2px; }
.match-item:hover .match-play { color: var(--accent-cyan); background: rgba(0,229,255,0.12); transform: scale(1.1); }
@media (min-width: 769px) { .desktop-hide { display: none !important; } }
.match-time { width: 44px; text-align: center; flex-shrink: 0; }
.match-time .time { font-size: 11px; font-weight: 700; color: var(--accent-cyan); font-variant-numeric: tabular-nums; letter-spacing: 0.3px; }
.match-time .live-wrap { position: relative; display: inline-grid; }
.match-time .live-wrap .live-badge, .match-time .live-wrap .live-time, .match-time .live-wrap .popular-badge, .match-time .live-wrap .live-time-static { grid-area: 1 / 1; text-align: center; }
.match-time .live-badge { font-size: 9px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; background: var(--accent-red); padding: 2px 6px; border-radius: 3px; display: inline-block; }
.match-time .live-time { font-size: 10px; font-weight: 600; color: var(--accent-red); }
.match-time .live-time-static { font-size: 10px; font-weight: 600; color: var(--text-secondary); }
.match-time .popular-badge { font-size: 8px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.6px; background: var(--accent-green); padding: 2px 5px; border-radius: 3px; display: inline-block; }
.live-wrap-double .live-time-static { animation: flip2a 4s ease-in-out infinite; }
.live-wrap-double .popular-badge { animation: flip2b 4s ease-in-out infinite; }
.live-wrap-double .live-badge { animation: flip2a 3s ease-in-out infinite; }
.live-wrap-double .live-time { animation: flip2b 3s ease-in-out infinite; }
@keyframes flip2a { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes flip2b { 0%, 45% { opacity: 0; } 50%, 95% { opacity: 1; } 100% { opacity: 0; } }
.live-wrap-triple .live-badge { animation: flip3a 6s ease-in-out infinite; }
.live-wrap-triple .live-time { animation: flip3b 6s ease-in-out infinite; }
.live-wrap-triple .popular-badge { animation: flip3c 6s ease-in-out infinite; }
@keyframes flip3a { 0%, 28% { opacity: 1; } 33%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes flip3b { 0%, 28% { opacity: 0; } 33%, 61% { opacity: 1; } 66%, 100% { opacity: 0; } }
@keyframes flip3c { 0%, 61% { opacity: 0; } 66%, 95% { opacity: 1; } 100% { opacity: 0; } }
.match-time .finished-badge { font-size: 8px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); padding: 1px 5px; border-radius: 3px; display: inline-block; }
.match-item.finished { opacity: 0.4; transition: opacity 0.2s ease; }
.match-item.finished:hover { opacity: 0.65; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.match-teams { flex: 1; min-width: 0; }
.match-team { display: flex; align-items: center; gap: 8px; padding: 1px 0; }
.match-team img { width: 18px; height: 18px; border-radius: 2px; flex-shrink: 0; }
.match-team .team-name { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.92); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.1px; }
.match-item:hover .team-name { color: #fff; }
.match-item.live .team-name { color: #fff; }
.match-score { width: 20px; text-align: center; flex-shrink: 0; }
.match-score .score { font-size: 12px; font-weight: 700; color: var(--text-primary); line-height: 1.6; }
.match-score .score.highlight { color: var(--accent-green); }

/* ============================================
   PLAYER AREA
   ============================================ */
.player-wrapper { display: flex; flex-direction: column; }
.seo-content-wrap { background: var(--bg-primary); }
.now-playing { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; background: var(--bg-card); border-bottom: 1px solid var(--border-color); }
.now-playing-info { display: flex; align-items: center; gap: 10px; }
.now-playing-dot { width: 8px; height: 8px; background: var(--accent-red); border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite; }
.now-playing-text { font-size: 13px; color: var(--text-secondary); }
.now-playing-text strong { color: var(--text-primary); }
.now-playing-actions { display: flex; gap: 8px; }
.btn-cinema { padding: 6px 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-secondary); font-size: 12px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 6px; }
.btn-cinema:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.player-container { position: relative; width: 100%; background: #000; overflow: hidden; }
.player-container .player-ratio { position: relative; padding-bottom: 56.25%; height: 0; }
.player-container iframe, .player-container .player-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.player-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.player-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #0a0e17 0%, #111827 50%, #0a0e17 100%); color: var(--text-muted); }
.player-placeholder .play-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.3; }
.player-placeholder p { font-size: 14px; }
.below-player-banner { padding: 10px 20px; background: var(--bg-card); border-bottom: 1px solid var(--border-color); }
.below-player-banner a { display: block; width: 100%; }
.below-player-banner img { width: 100%; border-radius: 6px; }
.below-player-content { padding: 20px; }
.below-player-content h1 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.below-player-content h2 { font-size: 18px; font-weight: 600; margin: 16px 0 8px; color: var(--accent-cyan); }
.below-player-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

/* ============================================
   CHAT
   ============================================ */
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #0f2040; border-bottom: 1px solid #1a3060; }
.chat-header h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.chat-header h3 .chat-icon { color: var(--accent-green); }
.chat-online { font-size: 11px; color: var(--accent-green); display: flex; align-items: center; gap: 4px; }
.chat-online::before { content: ''; width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; }
.chatango-embed { flex: 1; overflow: hidden; }
.chatango-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--bg-header); border-top: 1px solid var(--border-color); padding: 20px; text-align: center; }
.footer-inner { max-width: 1600px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent-cyan); }
.footer-copy { font-size: 11px; color: var(--text-muted); }
.footer-copy a { color: var(--accent-cyan); }

/* ============================================
   CINEMA MODE
   ============================================ */
body.cinema-mode .sidebar-left, body.cinema-mode .sidebar-right { display: none; }
body.cinema-mode .content-center { max-width: 100%; }
body.cinema-mode .main-content-wrapper { max-width: 100%; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) { :root { --sidebar-width: 280px; --chat-width: 260px; } }
@media (max-width: 1024px) { .main-nav a { padding: 8px 10px; font-size: 10px; } }

@media (max-width: 768px) {
    .main-content-wrapper { flex-direction: column; }

    /* Grid'i kapat, flex column yap */
    .content-right-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    /* Reklam mobilde tam genişlik */
    .menu-banner-area {
        grid-column: unset;
        grid-row: unset;
        order: 0;
    }

    .banner-pc-wrap { display: none !important; }
    .banner-mobile-wrap { display: flex !important; }

    /* Player önce */
    .content-center {
        order: 1;
        width: 100%;
    }

    /* Chat sonra */
    .sidebar-right {
        grid-column: unset;
        grid-row: unset;
        order: 3;
        width: calc(100% - 20px);
        max-height: none;
        position: relative;
        top: auto;
        border-left: none;
        height: 400px;
        margin: 10px;
        background: #0c1a3a;
        border-radius: 10px;
        border: 1px solid #1a3060;
        overflow: hidden;
    }

    /* Maç listesi - JS ile player altına taşınıyor */
    .sidebar-left {
        order: 2;
        width: 100%;
        max-height: 600px !important;
        overflow-y: auto !important;
        position: relative;
        top: auto;
        border-right: none;
        border-top: 1px solid var(--border-color);
        margin-top: 4px;
    }

    .player-wrapper { order: 1; width: 100%; border-radius: 8px; overflow: hidden; }
    .seo-content-wrap { order: 4; width: 100%; padding: 0 4px; }
    .menu-banner-area { border-radius: 8px; margin-bottom: 6px; }
    .chatango-embed { height: 340px !important; }
    .chat-header { background: #0f2040; border-bottom: 1px solid #1a3060; }
    .mobile-menu-btn { display: block; }
    .main-nav { display: none; }
    .main-nav.mobile-open { display: flex; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg-header); flex-direction: column; padding: 10px; border-bottom: 1px solid var(--border-color); z-index: 1500; }
    .main-nav.mobile-open a { flex-direction: row; padding: 12px 16px; }
    .header-contact { display: none; }
    .site-logo { flex: 1; }
    .site-logo img, .custom-logo-link img, .site-logo .custom-logo { height: 38px; max-width: 200px; }
    .header-inner { padding: 0 12px; }
    .mobile-menu-btn { font-size: 24px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 1600; }
    .now-playing { padding: 8px 12px !important; position: relative; top: auto; z-index: 1; background: var(--bg-card) !important; border-bottom: 1px solid var(--border-color); }
    .now-playing-text { font-size: 11px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; max-width: 100%; }
    .top-bar { padding: 4px 12px !important; font-size: 11px !important; }
    .match-search input { font-size: 16px !important; }
    .below-player-content { padding: 14px; }
    .below-player-content h1 { font-size: 18px; }
}

/* ============================================
   MOBILE OVERLAY & BOTTOM NAV
   ============================================ */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1999; }
.mobile-overlay.active { display: block; }
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-header); border-top: 1px solid var(--border-color); z-index: 1000; padding: 6px 0; }
@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; justify-content: space-around; }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10px; color: var(--text-muted); padding: 4px 8px; }
    .mobile-bottom-nav a.active { color: var(--accent-cyan); }
    .mobile-bottom-nav a .nav-icon { font-size: 20px; }
    body { padding-bottom: 56px; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-admin-bar-fix .site-header { top: 32px; }
@media screen and (max-width: 782px) { .wp-admin-bar-fix .site-header { top: 46px; } }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }