/* =========================================
   1. GLOBAL STYLES & VARIABLES
   ========================================= */
:root {
    --bg-main: #000000;
    --bg-card: #121212;
    --text-main: #ffffff;
    --accent: #ffcc00; /* EMAS HUDL */
    --nav-height: 60px;
    --yt-grey: rgba(255, 255, 255, 0.1); /* Warna abu-abu transparan ala YouTube */
    --yt-hover: rgba(255, 255, 255, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body { 
    background-color: var(--bg-main); color: var(--text-main); 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    display: flex; flex-direction: column; min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; display: block; }

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
    height: var(--nav-height); background: #000;
    border-bottom: 1px solid #1f1f1f; display: flex; align-items: center; justify-content: space-between;
    padding: 0 30px; position: sticky; top: 0; z-index: 100;
}
.logo-area { display: flex; align-items: center; gap: 8px; }
.logo { font-weight: 900; font-size: 24px; font-style: italic; color: #fff; letter-spacing: -1px; }
.logo-tag { font-size: 13px; font-weight: 500; color: #888; margin-top: 6px; }
.nav-right { display: flex; align-items: center; }
.nav-btn { background: #2962ff; color: #fff; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; }

/* =========================================
   3. GRID CARDS (UNTUK INDEX & UPCOMING)
   ========================================= */
.main-body { padding: 30px; max-width: 1800px; margin: 0 auto; width: 100%; flex: 1; }
.section-header { 
    font-size: 20px; font-weight: 700; color: #fff; 
    margin-bottom: 20px; border-left: 4px solid var(--accent); 
    padding-left: 15px; text-transform: uppercase; 
}

.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.card {
    background: #111; border: 1px solid #222; border-radius: 8px; overflow: hidden;
    transition: 0.3s; position: relative; display: block;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

.card-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.card:hover .card-img { transform: scale(1.1); filter: brightness(0.7); }

.card-status { 
    position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 800; 
    padding: 3px 8px; border-radius: 3px; text-transform: uppercase; color: #fff; z-index: 2; 
}
.st-live { background: #e50914; box-shadow: 0 0 10px #e50914; animation: pulse 1s infinite; }
.st-upcoming { background: #2962ff; }

.card-info { padding: 15px; }
.card-sport { color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; display: block; }
.card-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-meta { color: #888; font-size: 12px; display: flex; align-items: center; gap: 5px; }

/* =========================================
   4. WATCH PAGE LAYOUT
   ========================================= */
.container { max-width: 1800px; margin: 0 auto; width: 100%; flex: 1; }
.watch-layout { display: grid; grid-template-columns: 1fr 400px; min-height: calc(100vh - var(--nav-height) - 150px); }

.main-content { 
    background: #000; display: flex; flex-direction: column; 
    justify-content: flex-start; position: relative; border-right: 1px solid #1f1f1f; padding: 30px; 
}

/* =========================================
   5. VIDEO PLAYER
   ========================================= */
.player-wrapper { 
    position: relative; width: 100%; padding-top: 56.25%; 
    background: #000; overflow: hidden; border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6); cursor: pointer; border: 1px solid #222;
}
.player-bg { 
    position: absolute; top: 0; left: 0;
    width: 100% !important; height: 100% !important; 
    object-fit: cover; object-position: center;
    opacity: 1; filter: brightness(0.6); z-index: 1; transition: 0.3s;
}
.player-wrapper:hover .player-bg { filter: brightness(0.8); transform: scale(1.02); }

.player-header {
    position: absolute; top: 0; left: 0; width: 100%; padding: 25px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 10; pointer-events: none;
}
.ph-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }
.ph-meta { font-size: 15px; color: #ddd; font-weight: 500; text-shadow: 0 1px 5px rgba(0,0,0,0.9); }

.overlay-center {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 20; 
}

.btn-play-live {
    width: 80px; height: 80px; background: rgba(0,0,0,0.6);
    border-radius: 50%; border: 2px solid #fff;
    display: flex; justify-content: center; align-items: center; 
    margin-bottom: 15px; backdrop-filter: blur(4px); transition: 0.2s;
}
.btn-play-live::after {
    content: ''; border-left: 24px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px;
}
.player-wrapper:hover .btn-play-live { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }

/* Control Bar */
.player-controls {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); z-index: 15;
}
.video-progress-line { width: 100%; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 15px; position: relative; }
.video-progress-filled { height: 100%; background: var(--accent); box-shadow: 0 0 15px rgba(255, 204, 0, 0.6); position: relative; }
.video-progress-filled::after { content:''; position: absolute; right: -6px; top: -4px; width: 12px; height: 12px; background: #fff; border-radius: 50%; }

.vc-row { display: flex; justify-content: space-between; align-items: center; color: #fff; }
.vc-left { display: flex; align-items: center; gap: 15px; } 
.vc-right { display: flex; align-items: center; gap: 20px; }
.vc-icon { font-size: 16px; cursor: pointer; }

/* Status & Badges */
.live-badge-control { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12px; text-transform: uppercase; }
.live-dot-control { width: 8px; height: 8px; border-radius: 50%; }
.is-live { color: #fff; } .is-live .live-dot-control { background: #e50914; box-shadow: 0 0 10px #e50914; animation: pulse 1.5s infinite; }
.is-upcoming { color: var(--accent); } .is-upcoming .live-dot-control { background: var(--accent); }
.is-replay { color: #aaa; } .is-replay .live-dot-control { background: #aaa; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.vc-separator { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }
.control-sport-badge {
    color: #000; background: var(--accent); font-size: 11px; font-weight: 800; 
    text-transform: uppercase; padding: 3px 8px; border-radius: 3px; letter-spacing: 0.5px;
    white-space: nowrap; box-shadow: 0 0 10px rgba(255,204,0,0.3);
}

/* =========================================
   6. UPCOMING EVENTS (BELOW PLAYER)
   ========================================= */
.upcoming-box { margin-top: 40px; padding-top: 30px; border-top: 1px solid #222; }
.up-header { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 20px; border-left: 4px solid var(--accent); padding-left: 15px; text-transform: uppercase; }
.up-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }

.up-card { background: #111; border: 1px solid #222; border-radius: 6px; overflow: hidden; display: block; transition: 0.3s; }
.up-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.up-thumb { width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden; }
.up-poster { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
.up-date-badge { position: absolute; top: 5px; right: 5px; background: rgba(0,0,0,0.7); color: #fff; font-size: 10px; padding: 3px 6px; border-radius: 3px; font-weight: 700; }

.up-info { padding: 12px; }
.up-title { font-size: 13px; font-weight: 700; color: #eee; line-height: 1.4; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.up-meta { font-size: 11px; color: #888; }

/* =========================================
   7. NEWS READER VIEW
   ========================================= */
.news-reader-container {
    background: #000; border: 1px solid #222; border-radius: 8px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6); min-height: 500px;
}
.news-hero-img { width: 100%; height: 350px; object-fit: cover; mask-image: linear-gradient(to bottom, black 70%, transparent 100%); }
.news-article-body { padding: 0 40px 40px 40px; margin-top: -60px; position: relative; z-index: 2; }
.news-badge-lg { background: var(--accent); color: #000; font-weight: 800; padding: 5px 15px; border-radius: 4px; display: inline-block; margin-bottom: 15px; box-shadow: 0 0 15px rgba(255,204,0,0.4); }
.news-headline { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 15px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.news-meta-row { color: #888; font-size: 14px; margin-bottom: 30px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.news-text-content { color: #ddd; font-size: 16px; line-height: 1.8; font-family: 'Segoe UI', sans-serif; text-align: justify; }

/* =========================================
   8. SIDEBAR
   ========================================= */
.sidebar { background: #000; padding: 30px 20px; border-left: 1px solid #1f1f1f; }
.sb-header { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.sb-list { display: flex; flex-direction: column; gap: 15px; }

.sb-card { display: flex; gap: 15px; align-items: center; group: hover; transition: 0.2s; }
.sb-card:hover { opacity: 0.8; }

.sb-thumb { width: 140px; aspect-ratio: 16/9; background: #1a1a1a; position: relative; overflow: hidden; border-radius: 6px; flex-shrink: 0; }
.sb-poster { width: 100%; height: 100%; object-fit: cover; }

.sb-info h4 { font-size: 13px; font-weight: 700; line-height: 1.4; color: #f1f1f1; margin-bottom: 4px; }
.sb-info span { font-size: 11px; color: #888; }

/* =========================================
   9. RESPONSIVE MOBILE FIX (LAYOUT)
   ========================================= */
@media (max-width: 900px) {
    .navbar { padding: 0 15px; height: 50px; }
    .logo-tag { display: none; }

    .container { padding: 0; width: 100%; } 
    .watch-layout { display: flex; flex-direction: column; } /* Mengatur tata letak tumpuk ke bawah */
    
    .main-content { padding: 0; border-right: none; width: 100%; order: 1; }
    .player-wrapper { border-radius: 0; border: none; width: 100%; box-shadow: none; }
    .player-header { padding: 15px; }
    .ph-title { font-size: 18px; margin-bottom: 4px; }
    .ph-meta { font-size: 12px; }
    
    .overlay-center { justify-content: center; }

    /* --- [FIXED] TOMBOL PLAY MOBILE --- */
    .btn-play-live { 
        width: 50px; 
        height: 50px; 
        margin-bottom: 0; 
        border-width: 2px;
    }
    
    .btn-play-live::after {
        border-left-width: 16px; 
        border-top-width: 10px; 
        border-bottom-width: 10px; 
        margin-left: 4px;
    }
    /* ---------------------------------- */

    .player-controls { padding: 10px 15px; }
    .vc-left { gap: 8px; flex-wrap: nowrap; } 
    .vc-right { display: none; } 
    .live-badge-control { font-size: 10px; }
    .control-sport-badge { font-size: 9px; padding: 2px 5px; max-width: 150px; overflow: hidden; text-overflow: ellipsis; }

    /* --- KONFIGURASI NEWS & UPCOMING MOBILE --- */
    .mobile-news-section { 
        display: block !important; 
        margin-top: 20px; 
        padding: 0 20px; 
        box-sizing: border-box; 
        order: 2; /* Menampilkan Berita setelah Player */
    }
    
    .mob-news-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
    .mob-news-card { 
        background: #111; 
        border: 1px solid #222; 
        border-radius: 6px; 
        overflow: hidden; 
        display: flex; 
        align-items: center; 
        text-decoration: none;
    }
    .mob-news-thumb { width: 100px; height: 70px; object-fit: cover; flex-shrink: 0; }
    .mob-news-info { padding: 10px; }
    .mob-news-title { font-size: 12px; font-weight: 700; color: #eee; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .mob-news-badge { font-size: 9px; color: var(--accent); font-weight: 800; text-transform: uppercase; }
    
    .upcoming-box { 
        margin-top: 20px; 
        padding: 20px; 
        border-top: 1px solid #222; 
        background: #080808; 
        order: 3; /* Menampilkan Upcoming setelah Berita */
    }
    .up-grid { grid-template-columns: 1fr 1fr; }
    .up-title { font-size: 11px; }
    /* ------------------------------------------- */
    
    .sidebar { display: none !important; }
    .sb-thumb { width: 110px; }

    .news-hero-img { height: 250px; }
    .news-article-body { padding: 0 20px 30px 20px; margin-top: -40px; }
    .news-headline { font-size: 24px; }
}

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
    background: #000;
    border-top: 1px solid #1f1f1f;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto; 
    width: 100%;
}

.footer-content { max-width: 800px; margin: 0 auto; }
.footer-logo { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-support { font-size: 13px; color: #888; margin-bottom: 25px; }
.footer-support .highlight { color: var(--accent); font-weight: 700; }

.footer-links { 
    margin-bottom: 20px; display: flex; 
    justify-content: center; gap: 20px; flex-wrap: wrap; 
}
.footer-links a { color: #888; font-size: 12px; text-decoration: none; transition: 0.2s; font-weight: 500; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-copy { color: #555; font-size: 11px; }

/* =========================================
   11. INTERACTION BAR (STYLE YOUTUBE)
   ========================================= */

.interaction-bar {
    background: #111; 
    border: 1px solid #222;
    border-top: none;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- TOMBOL LIKE (CAPSULE/PILL STYLE) --- */
.like-section { 
    position: relative; 
}

.yt-like-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yt-grey); 
    border: 1px solid #333;
    border-radius: 18px; 
    padding: 0 16px;
    height: 36px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px; 
    font-family: inherit;
}

.yt-like-pill:hover {
    background-color: var(--yt-hover);
    border-color: #555;
}

.yt-like-pill.is-active {
    background-color: rgba(255, 204, 0, 0.15); 
    color: var(--accent);
    border-color: var(--accent);
}

.yt-like-pill i { 
    font-size: 16px; 
    transition: transform 0.2s;
}

.yt-like-pill.is-active i {
    animation: popLike 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popLike { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }

#likeCount { 
    font-weight: 700; 
    font-variant-numeric: tabular-nums;
}

/* --- TOMBOL SHARE (BULAT ALA YOUTUBE) --- */
.share-section { display: flex; align-items: center; gap: 15px; }

.share-title { 
    font-size: 12px; font-weight: 700; color: #888; 
    text-transform: uppercase; letter-spacing: 0.5px; 
}

.share-buttons { display: flex; gap: 10px; }

.share-btn {
    width: 36px; height: 36px;
    border-radius: 50%; 
    background: var(--yt-grey);
    border: 1px solid #333;
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.share-btn:hover { background: var(--yt-hover); transform: scale(1.1); border-color: #777; }

.btn-wa:hover { background: #25d366; border-color: #25d366; }
.btn-fb:hover { background: #1877f2; border-color: #1877f2; }
.btn-x:hover { background: #000; border-color: #fff; }

/* =========================================
   12. MOBILE RESPONSIVE (UPDATE STYLE YOUTUBE)
   ========================================= */
@media (max-width: 600px) {
    .interaction-bar { 
        padding: 15px;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .like-section { 
        width: auto; border: none; padding: 0;
    }

    .share-section { 
        width: auto; border: none; padding: 0;
        flex-direction: row; 
    }

    .share-title { display: none; } 
    
    .share-buttons { gap: 8px; }
    
    .share-btn { width: 32px; height: 32px; font-size: 13px; }
}

/* =========================================
   13. ANIMASI PARTIKEL (TETAP ADA)
   ========================================= */
.like-particle {
    position: absolute; left: 15px; bottom: 30px;
    font-size: 20px; color: var(--accent);
    pointer-events: none; z-index: 100;
    animation: floatUp 1.2s ease-out forwards;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

@keyframes floatUp {
    0% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
    50% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-80px) scale(1.5) rotate(20deg); }
}

.bump-effect { animation: bump 0.3s ease-out; color: var(--accent) !important; }
@keyframes bump { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
/* =========================================
   SEARCH BAR (RIGHT ALIGNED)
   ========================================= */
.nav-search {
    margin-left: auto; 
    width: 100%;
    max-width: 350px; 
    display: flex;
    align-items: center;
}

.search-form {
    display: flex;
    width: 100%;
    background: #121212;
    border: 1px solid #303030;
    border-radius: 40px; 
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: #1c62b9; 
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 15px 0 20px;
    font-size: 14px;
    font-weight: 400;
    height: 38px; 
}

.search-input::placeholder {
    color: #888;
    font-weight: 500;
}

.search-btn {
    width: 50px;
    background: #222;
    border: none;
    border-left: 1px solid #303030;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.search-btn:hover {
    background: #333;
    color: #fff;
}

.search-btn i {
    font-size: 16px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
    .navbar {
        flex-wrap: wrap; 
        height: auto;
        padding-bottom: 10px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .nav-search {
        order: 3; 
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0 0; 
    }
    
    .search-form {
        height: 36px;
    }
    .search-input {
        height: 36px;
    }
    
    .logo-area {
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
}
/* Update pada Sidebar Desktop */
.sidebar { 
    background: #000; 
    padding: 30px 20px; 
    border-left: 1px solid #1f1f1f;
    /* Tambahkan ini agar tidak meluber ke bawah */
    max-height: calc(100vh - var(--nav-height));
    position: sticky;
    top: var(--nav-height);
    overflow-y: auto; 
}

/* Custom Scrollbar agar sidebar tetap cantik */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

/* Update pada Sidebar Mobile */
@media (max-width: 900px) {
    .sidebar { display: none !important; }
    
    .mobile-news-section { 
        display: block !important; 
        margin-top: 20px; 
        padding: 0 20px; 
        order: 2; 
    }

    /* Membatasi tinggi daftar berita di HP agar tidak terlalu panjang */
    .mob-news-grid { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 12px;
        max-height: 400px; /* Batas tinggi box berita di HP */
        overflow-y: auto;
        padding-right: 5px;
    }

    .mob-news-card {
        background: #111;
        border: 1px solid #222;
        border-radius: 6px;
        height: 75px; /* Ukuran tetap agar ringkas */
        display: flex;
        align-items: center;
    }

    .mob-news-thumb { width: 100px; height: 100%; object-fit: cover; }
}
/* =========================================
   1. GLOBAL STYLES & VARIABLES (ASLI)
   ========================================= */
:root {
    --bg-main: #000000;
    --bg-card: #121212;
    --text-main: #ffffff;
    --accent: #ffcc00; /* EMAS HUDL */
    --nav-height: 60px;
    --yt-grey: rgba(255, 255, 255, 0.1); 
    --yt-hover: rgba(255, 255, 255, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body { 
    background-color: var(--bg-main); color: var(--text-main); 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    display: flex; flex-direction: column; min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; display: block; }

/* ... (Gunakan semua CSS lama Anda di sini sampai bagian FOOTER) ... */

/* =========================================
   14. CAROUSEL SWIPER CUSTOM (TAMBAHAN)
   ========================================= */
.newsSwiper {
    width: 100%;
    padding: 10px 0 45px 0 !important;
}
.newsSwiper .swiper-slide {
    height: auto;
}
.newsSwiper .swiper-button-next, 
.newsSwiper .swiper-button-prev {
    color: var(--accent);
    background: rgba(0,0,0,0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transform: scale(0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}
.newsSwiper .swiper-button-next:after, 
.newsSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}
.newsSwiper .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}
.newsSwiper .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 20px;
    border-radius: 5px;
}
/* Memastikan card di dalam swiper tetap rapi */
.newsSwiper .card {
    margin-bottom: 0;
}
/* TIMER STYLE */
.timer-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    pointer-events: auto;
}
.timer-title { font-weight: 800; font-size: 14px; margin-bottom: 20px; letter-spacing: 1px; }
.timer-grid { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.t-box { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.t-box span { font-size: 32px; font-weight: 900; line-height: 1; }
.t-box label { font-size: 9px; color: #888; font-weight: 700; margin-top: 5px; }
.t-sep { font-size: 24px; font-weight: 900; color: var(--accent); padding-bottom: 15px; }
.btn-waiting { 
    background: rgba(255,255,255,0.2); color: #fff; padding: 10px 25px; 
    border-radius: 50px; font-weight: 700; font-size: 14px; 
}

/* LOADER SPINNER */
.spinner {
    width: 50px; height: 50px; border: 5px solid rgba(255,204,0,0.1);
    border-left-color: var(--accent); border-radius: 50%;
    animation: spin 1s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

