:root {
    --bg-primary: #101e16;
    --bg-secondary: #1c3126;
    --bg-card: #24382c;
    --accent: #9ed54a;
    --accent-hover: #b6e56e;
    --accent-dim: rgba(158,213,74,0.12);
    --accent-glow: rgba(158,213,74,0.3);
    --green: #9ed54a;
    --red: #ef4444;
    --text: #ffffff;
    --text-dim: #8fa396;
    --text-muted: #5e7667;
    --border: #2f4a3c;
    --border-light: #5e7667;
    --glass: rgba(255,255,255,.05);
    --glass-hover: rgba(255,255,255,.08);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 14px;
    --shadow: 0 4px 24px rgba(0,0,0,.5);
    --transition: all .2s ease;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ========== MARQUEE TOPBAR ========== */
.marquee-topbar {
    background: #0c1812;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(158,213,74,.15);
}
.marquee-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content-static {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .3px;
    font-weight: 500;
}
.marquee-content-static i {
    font-size: 11px;
}
.marquee-text {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .3px;
}
.marquee-text i {
    margin: 0 6px;
    font-size: 11px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.marquee-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 34px;
    background: #0c1812;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.marquee-close:hover { color: #fff; }

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
    background: #101e16;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}
.announcement-inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 6px 22px;
    border: 1.5px solid rgba(158,213,74,.35);
    border-radius: 50px;
    background: rgba(158,213,74,.08);
    transition: all .25s ease;
}
.announcement-inner a:hover {
    background: rgba(158,213,74,.15);
    border-color: rgba(158,213,74,.6);
    color: var(--accent-hover);
}
.announcement-inner a i {
    font-size: 14px;
}

/* ========== HEADER ========== */
.site-header {
    background: #101e16;
    border-bottom: 1px solid #2f4a3c;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
}
.header-nav {
    margin-left: auto;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-logo img {
    height: 46px;
    max-width: 240px;
    object-fit: contain;
}
.logo-icon {
    color: var(--accent);
    font-size: 22px;
}
.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    color: #fff;
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
}
.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.12);
}
.nav-link i { font-size: 12px; color: var(--accent); }
.header-social-group {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}
.header-social {
    color: var(--text-dim);
    font-size: 16px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.header-social:hover { color: #9ed54a; background: rgba(158,213,74,.12); border-color: rgba(158,213,74,.35); }

/* ========== MOBILE DRAWER ========== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -310px;
    width: 290px;
    height: 100vh;
    height: 100dvh;
    background: #101e16;
    border-right: 1px solid var(--border);
    z-index: 9999;
    transition: left .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open { left: 0; }
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}
.drawer-close {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 18px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.drawer-close:hover { color: var(--accent); }
.drawer-nav { flex: 1; padding: 12px 0; }
.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.drawer-nav a:hover {
    background: var(--glass-hover);
    color: var(--accent);
    border-left-color: var(--accent);
}
.drawer-nav a { color: #fff; }
.drawer-nav a i { width: 20px; text-align: center; color: var(--accent); font-size: 15px; }
.drawer-social {
    padding: 18px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 14px;
}
.drawer-social a {
    color: var(--text-dim);
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.drawer-social a:hover { color: var(--accent); background: var(--accent-dim); }

/* ========== MAIN CONTAINER ========== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 20px;
}

/* ========== PLAYER LAYOUT ========== */
.player-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
}

/* Player Area */
.player-area {
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.player-top-bar {
    background: #101e16;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2f4a3c;
    border-radius: var(--radius-lg) 0 0 0;
}
.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.match-info i { color: var(--accent); font-size: 16px; }
.match-info span { color: #fff; }
.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    animation: pulse-live 2s infinite;
}
.live-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .2; }
}
@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 8px rgba(239,68,68,.3); }
    50% { box-shadow: 0 0 16px rgba(239,68,68,.5); }
}

.player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 0 0 0 var(--radius-lg);
    overflow: hidden;
}
.player-wrapper iframe,
.player-wrapper video,
.player-wrapper .player-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.player-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    gap: 14px;
    background: radial-gradient(ellipse at center, #101e16 0%, #000 70%);
    overflow: hidden;
}
.pp-custom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-placeholder .pp-brand {
    width: min(52%, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.45));
}
.player-placeholder i {
    font-size: 54px;
    color: var(--accent);
    opacity: .5;
}
.player-placeholder p {
    font-size: 13px;
    opacity: .6;
    text-align: center;
    line-height: 1.5;
}
.show-mobile { display: none; }
@media (max-width: 1024px) {
    .hide-mobile { display: none; }
    .show-mobile { display: inline; }
}
.placeholder-dots {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}
.placeholder-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: .4;
}
.placeholder-dots .dot.active {
    background: var(--accent);
    opacity: 1;
}

/* ========== Custom Player Controls ========== */
.player-wrapper { cursor: pointer; }
.player-wrapper:fullscreen,
.player-wrapper:-webkit-full-screen {
    padding-bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    border-radius: 0;
}
.player-wrapper:fullscreen video,
.player-wrapper:-webkit-full-screen video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.player-wrapper:fullscreen .player-overlay-ad,
.player-wrapper:-webkit-full-screen .player-overlay-ad {
    z-index: 2147483647;
}
video::-webkit-media-controls { display: none !important; }
video:fullscreen,
video:-webkit-full-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.cp-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
    padding-top: 30px;
    opacity: 0;
    transition: opacity .3s ease;
}
.player-wrapper:hover .cp-controls,
.player-wrapper.cp-show .cp-controls {
    opacity: 1;
}
.cp-progress {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,.15);
    cursor: pointer;
    position: relative;
    transition: height .15s ease;
}
.cp-progress:hover { height: 6px; }
.cp-progress-filled {
    height: 100%;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
    width: 0%;
    position: relative;
}
.cp-progress-filled::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(158,213,74,.6);
    transition: transform .15s ease;
}
.cp-progress:hover .cp-progress-filled::after { transform: translateY(-50%) scale(1); }

.cp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 10px;
}
.cp-left, .cp-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cp-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all .2s ease;
}
.cp-btn:hover {
    background: rgba(255,255,255,.12);
    color: var(--accent);
}
.cp-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.2);
    outline: none;
    cursor: pointer;
    margin-left: 2px;
}
.cp-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 4px rgba(158,213,74,.5);
}
.cp-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
}
.cp-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    margin-left: 8px;
    letter-spacing: .5px;
    padding: 3px 8px;
    background: rgba(158,213,74,.12);
    border-radius: 4px;
}

.cp-big-play {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cp-big-play i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(158,213,74,.25);
    border: 2px solid rgba(158,213,74,.5);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all .2s ease;
}
.cp-big-play:hover i {
    background: rgba(158,213,74,.4);
    transform: scale(1.1);
}

.player-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.player-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.channel-tabs {
    display: flex;
    gap: 0;
    background: #15261e;
    border-top: 1px solid #2f4a3c;
    overflow-x: auto;
    scrollbar-width: none;
}
.channel-tabs::-webkit-scrollbar { display: none; }
.channel-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    cursor: pointer;
    border: none;
    background: none;
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}
.channel-tab:hover { color: var(--text); background: var(--glass-hover); }
.channel-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--accent-dim);
}
.channel-quality {
    font-size: 9px;
    padding: 2px 6px;
    background: var(--accent);
    color: #000;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* ========== MATCH SIDEBAR ========== */
.match-sidebar {
    background: #1c3126;
    border: 1px solid #2f4a3c;
    border-left: none;
    display: flex;
    flex-direction: column;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sidebar-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2f4a3c;
    background: #15261e;
}
.sidebar-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
}
.sidebar-header-left i { font-size: 14px; color: var(--accent); }
.sidebar-refresh {
    background: none;
    border: 1px solid #2f4a3c;
    color: var(--text-dim);
    font-size: 12px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.sidebar-refresh:hover { color: var(--accent); border-color: var(--accent); }

/* Sidebar Body - Sport tabs left, match list right */
.sidebar-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Vertical Sport Tabs */
.sport-tabs-vertical {
    width: 76px;
    background: #15261e;
    border-right: 1px solid #2f4a3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow-y: auto;
    scrollbar-width: none;
    flex-shrink: 0;
}
.sport-tabs-vertical::-webkit-scrollbar { display: none; }

.sport-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px 6px 12px;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: none;
    color: #8fa396;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    border-left: 3px solid transparent;
}
.sport-tab i {
    font-size: 20px;
    color: #8fa396;
    opacity: 1;
}
.sport-tab span {
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    opacity: .7;
}
.sport-tab:hover {
    background: rgba(255,255,255,.05);
}
.sport-tab:hover i { opacity: 1; }
.sport-tab.active {
    color: #9ed54a;
    background: rgba(158,213,74,.12);
}
.sport-tab.active i { opacity: 1; color: #9ed54a; }
.sport-tab.active span { opacity: 1; }

.sport-tab-channels {
    border-bottom: none;
    background: rgba(158,213,74,.06);
}
.sport-tab-channels i { color: var(--accent) !important; opacity: 1 !important; }
.sport-tab-channels > span:not(.sport-badge) { color: var(--accent); opacity: 1 !important; }
.sport-tab-channels:hover,
.sport-tab-channels.active {
    background: rgba(158,213,74,.15) !important;
}

.channel-logo {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}
.channel-logo img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    display: block;
}
.channel-logo i {
    font-size: 13px;
    color: var(--accent);
}
.channel-name {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.channel-live-tag {
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(158,213,74,.15);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3px;
}

.sport-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #9ed54a, #7fb33a);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Match List Area */
.match-list-area {
    flex: 1;
    min-width: 0;
    height: 620px;
    min-height: 620px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(158,213,74,.3) transparent;
}
.match-list-area:hover {
    scrollbar-color: rgba(158,213,74,.5) transparent;
}
.match-list-area::-webkit-scrollbar { width: 4px; }
.match-list-area::-webkit-scrollbar-track { background: transparent; }
.match-list-area::-webkit-scrollbar-thumb { background: rgba(158,213,74,.3); border-radius: 2px; }
.match-list-area:hover::-webkit-scrollbar-thumb { background: rgba(158,213,74,.5); }

/* Match Section Headers */
.match-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-bottom: 1px solid #2f4a3c;
    background: rgba(0,0,0,.2);
}
.match-section-header.hd {
    color: var(--accent);
}
.match-section-header.hd i {
    color: var(--accent);
    font-size: 12px;
}
.match-section-header.live {
    color: #ef4444;
}
.live-indicator {
    display: flex;
    align-items: center;
}
.live-indicator .live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
}
.match-count {
    margin-left: auto;
    background: rgba(158,213,74,.15);
    color: var(--accent);
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
}
.match-count.live-count {
    background: rgba(239,68,68,.15);
    color: #ef4444;
}

/* Match Items */
.match-item {
    padding: 14px 16px;
    margin: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.04);
    cursor: pointer;
    transition: var(--transition);
}
.match-item:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.08);
}
.match-item.active {
    background: rgba(255,255,255,.08);
}

.match-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    min-width: 0;
    width: 100%;
}

.team-logo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.team-logo i {
    font-size: 14px;
    color: var(--accent);
}
.match-item.is-live .team-logo i { color: var(--accent); }
.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.hd-badge {
    background: linear-gradient(135deg, #6ea832, #9ed54a);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: .5px;
    flex-shrink: 0;
}
.soon-tag {
    margin-left: auto;
    font-size: 10px;
    color: #f59e0b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.match-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: var(--text-muted);
    gap: 12px;
}
.match-loading i { font-size: 24px; color: var(--accent); }

.team-group {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}
.team-name {
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-size: 12px;
}

.match-dash {
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
}

.match-time-small {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 6px;
}

.match-date-line {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .2px;
}
.match-date-line i {
    font-size: 10px;
    opacity: .6;
}
.date-today {
    color: #9ed54a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.date-tomorrow {
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.date-other {
    color: #8fa396;
    font-weight: 600;
}
.date-time {
    color: rgba(255,255,255,.5);
    font-variant-numeric: tabular-nums;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .3px;
}
.live-dot-sm {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite;
}

.no-matches {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: var(--text-dim);
    gap: 12px;
}
.no-matches i { font-size: 36px; opacity: .3; }
.no-matches p { font-size: 13px; opacity: .6; }

/* ========== FOOTER ========== */
.site-footer {
    background: #0a1610;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {}
.footer-logo {
    height: 48px;
    margin-bottom: 14px;
}
.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}
.footer-logo-text i { margin-right: 6px; }
.footer-tagline {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: rgba(158,213,74,.3);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: var(--text-dim);
    font-size: 13px;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-seo {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-seo h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}
.footer-seo p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.footer-bottom-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.footer-bi {
    height: 28px;
    object-fit: contain;
    opacity: .6;
    transition: opacity .2s;
    filter: grayscale(30%);
}
.footer-bi:hover { opacity: 1; filter: none; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.footer-copyright {
    color: var(--text-muted);
    font-size: 12px;
}
.footer-powered {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    cursor: pointer;
    text-decoration: none;
}
.footer-powered:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158,213,74,.2);
    color: rgba(255,255,255,.8);
}
.footer-powered strong {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-powered strong i { color: var(--accent); }

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 32px 0 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #15261e;
    border-top: 1px solid var(--border);
    z-index: 900;
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    align-items: flex-end;
    justify-content: space-around;
}
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 8px;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
}
.mobile-nav-item i { font-size: 19px; }
.mobile-nav-item:hover, .mobile-nav-item.active { color: var(--accent); }

.mobile-nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mobile-center-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c3126, #101e16);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 18px;
    box-shadow: 0 -4px 20px rgba(158,213,74,.25);
    transition: all .25s ease;
    text-decoration: none;
}
.mobile-center-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 -4px 28px rgba(158,213,74,.4);
}
.mobile-center-btn img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 6px;
}
.mobile-center-btn i {
    font-size: 22px;
    color: var(--accent);
}

/* ========== SITE MODAL ========== */
.site-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.site-modal {
    background: none;
    border: none;
    border-radius: 0;
    max-width: 460px;
    width: 100%;
    padding: 0;
    position: relative;
    animation: modalIn .3s ease;
    overflow: visible;
    text-align: center;
}
@keyframes modalIn {
    from { transform: scale(.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,.8); }
.modal-image {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-btn {
    display: block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #101e16, #1c3126);
    color: #9ed54a;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.modal-btn:hover { background: linear-gradient(135deg, #1c3126, #24382c); color: #b6e56e; }

/* ========== BLOG ========== */
.page-header { margin-bottom: 28px; }
.page-header h1 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-header h1 i { color: var(--accent); font-size: 20px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--text);
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184,150,78,.2);
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-image { overflow: hidden; }
.blog-info { padding: 18px; }
.blog-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-date {
    color: var(--text-dim);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== CONTENT PAGE ========== */
.content-page {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 900px;
    margin: 0 auto;
}
.content-image img { width: 100%; border-radius: var(--radius); margin-bottom: 24px; }
.page-featured-img {
    margin-bottom: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}
.page-featured-img img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}
.content-body { color: var(--text); font-size: 15px; line-height: 1.8; }
.content-body h2, .content-body h3 { margin: 24px 0 12px; color: var(--accent); }
.content-body p { margin-bottom: 14px; }
.content-body img { max-width: 100%; border-radius: var(--radius); margin: 14px 0; }
.content-body a { color: var(--accent); text-decoration: underline; }
.back-link { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); }
.back-link a { color: var(--text-dim); font-size: 13px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.back-link a:hover { color: var(--accent); }

/* ========== PROMOTIONS ========== */
.promo-header {
    text-align: center;
    padding: 40px 0 32px;
}
.promo-header-sub {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}
.promo-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 4px 0 12px;
    letter-spacing: 2px;
}
.promo-header p {
    font-size: 15px;
    color: var(--text-dim);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}
.promo-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.promo-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.promo-card:hover img {
    transform: scale(1.03);
}
.promo-placeholder {
    width: 100%;
    height: 260px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-muted);
}
.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}
.promo-card:hover .promo-overlay {
    opacity: 1;
}
.promo-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #101e16;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform .15s ease;
}
.promo-overlay-btn:hover {
    transform: scale(1.05);
    color: #101e16;
}

.no-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-dim);
    gap: 14px;
    grid-column: 1 / -1;
}
.no-content i { font-size: 44px; opacity: .3; }

/* ========== AD BANNERS ========== */
.ad-banner {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    overflow: hidden;
}
.ad-player-banner {
    margin-bottom: 12px;
}
.ad-player-banner + .player-top-bar {
    margin-top: 0;
}
.player-wrapper + .ad-player-banner {
    margin-top: 12px;
    margin-bottom: 0;
}
.ad-sidebar-banner {
    margin-bottom: 0;
}
.match-sidebar .ad-sidebar-banner:last-child {
    margin-top: 0;
    margin-bottom: 0;
}

/* ========== ERROR PAGE ========== */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    gap: 16px;
}
.error-page h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .player-layout {
        grid-template-columns: 1fr;
    }
    .match-sidebar {
        border: 1px solid #2f4a3c;
        border-top: none;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .player-top-bar { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .player-wrapper { border-radius: 0; }
    .player-placeholder p { font-size: 13px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .header-nav { display: none; }
    .header-social-group { display: none; }
    .top-sponsor-bar { display: none; }
    .marquee-topbar { height: 28px; }
    .marquee-text { font-size: 11px; }
    .announcement-bar { height: 50px; padding: 10px 16px; }
    .announcement-inner a { font-size: 11px; padding: 7px 18px; }
    .site-header { height: 60px; }
    .header-inner { justify-content: center; position: relative; }
    .header-left { width: 100%; justify-content: center; }
    .mobile-menu-btn { position: absolute; left: 16px; }
    .mobile-bottom-nav { display: flex; }
    .site-footer { margin-bottom: 65px; }
    .main-container { padding: 0; }
    .player-layout { border-radius: 0; }
    .player-top-bar { border-radius: 0; padding: 10px 14px; }
    .player-wrapper { border-radius: 0; padding-bottom: 56.25%; }
    .match-sidebar { border-radius: 0; border-left: none; border-right: none; }
    .sidebar-header { border-radius: 0; }
    .content-page { padding: 22px; }
    .blog-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .promo-header h1 { font-size: 28px; }
    .promo-card img, .promo-placeholder { height: 200px; }
    .match-list-area { height: 500px; min-height: 500px; overflow-x: hidden; }
    .top-right-notice { display: none; }
    .sport-tabs-vertical { width: 54px; flex-shrink: 0; }
    .sport-tab span { font-size: 8px; }
    .sport-tab i { font-size: 16px; }
    .sport-tab { padding: 10px 4px 8px; }
    .sport-badge { min-width: 16px; height: 16px; font-size: 8px; top: 4px; right: 4px; }
    .team-name { font-size: 13px; max-width: 110px; }
    .team-logo { width: 24px; height: 24px; flex-shrink: 0; }
    .match-row { gap: 6px; flex-wrap: nowrap; }
    .match-item { padding: 12px 12px; margin: 4px 6px; overflow: hidden; }
    .team-group { gap: 5px; flex-shrink: 1; min-width: 0; }
    .hd-badge { font-size: 8px; padding: 2px 5px; }
    .live-tag { font-size: 8px; padding: 3px 7px; white-space: nowrap; }
    .match-section-header { padding: 10px 12px; font-size: 12px; }
    .match-count { font-size: 10px; padding: 2px 8px; }
    .match-dash { font-size: 13px; margin: 0 2px; }
    .match-time-small { font-size: 11px; padding-left: 4px; }
    .page-header h1 { font-size: 20px; }
    .sidebar-body { overflow: hidden; }
    .home-blog-section { margin: 16px 10px 0; }
    .cp-bottom { padding: 6px 10px 8px; }
    .cp-btn { width: 32px; height: 32px; font-size: 14px; }
    .cp-volume { width: 50px; }
    .cp-time { font-size: 10px; padding: 2px 6px; margin-left: 4px; }
    .cp-big-play i { width: 52px; height: 52px; font-size: 22px; }
}

@media (max-width: 480px) {
    .site-header { height: 56px; }
    .site-logo img { height: 32px; }
    .main-container { padding: 0; }
    .player-layout { border-radius: 0; }
    .player-top-bar { border-radius: 0; padding: 8px 12px; font-size: 12px; }
    .player-wrapper { border-radius: 0; }
    .match-sidebar { border-radius: 0; }
    .match-item { padding: 11px 10px; margin: 3px 5px; }
    .team-name { font-size: 12px; max-width: 90px; }
    .team-logo { width: 22px; height: 22px; }
    .team-group { gap: 4px; }
    .match-row { gap: 5px; }
    .match-dash { font-size: 12px; }
    .sport-tabs-vertical { width: 48px; }
    .sport-tab i { font-size: 14px; }
    .sport-tab span { font-size: 7px; }
    .home-blog-grid { grid-template-columns: 1fr; }
}

/* ========== Home Blog Section ========== */
.home-blog-section {
    margin-top: 28px;
    padding-bottom: 10px;
}
.home-blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.home-blog-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
}
.home-blog-title i {
    color: var(--accent);
    font-size: 16px;
}
.home-blog-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}
.home-blog-all:hover {
    color: var(--accent-hover);
    gap: 10px;
}
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.home-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.home-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.home-blog-image {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.home-blog-card:hover .home-blog-image img {
    transform: scale(1.06);
}
.home-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 32px;
}
.home-blog-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(14,34,88,.85);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}
.home-blog-date i {
    color: var(--accent);
    font-size: 11px;
}
.home-blog-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-blog-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-blog-content p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
    margin-top: auto;
}
.home-blog-card:hover .home-blog-read {
    gap: 10px;
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .home-blog-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .home-blog-image { height: 140px; }
    .home-blog-content h3 { font-size: 13px; }
}
@media (max-width: 540px) {
    .home-blog-grid { grid-template-columns: 1fr; }
    .home-blog-image { height: 180px; }
}

/* ========== Blog List Page ========== */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .blog-list-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .blog-list-grid { grid-template-columns: 1fr; }
}

/* ========== Blog Detail Page ========== */
.blog-detail-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 0;
}
.blog-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.blog-detail-cover {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}
.blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-detail-body {
    padding: 28px 32px 32px;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-dim);
}
.blog-detail-meta i {
    color: var(--accent);
    margin-right: 4px;
}
.blog-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 24px;
}
.blog-detail-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dim);
}
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 12px 0;
}
.blog-detail-content h2, .blog-detail-content h3 {
    color: #fff;
    margin: 20px 0 10px;
}
.blog-detail-content a {
    color: var(--accent);
}
.blog-detail-back {
    margin-top: 20px;
}
.blog-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}
.blog-detail-back a:hover {
    gap: 12px;
    color: var(--accent-hover);
}
@media (max-width: 768px) {
    .blog-detail-body { padding: 20px; }
    .blog-detail-title { font-size: 20px; }
}
