/* ==========================================================================
   RESET & BASE (SLOT THEME)
   ========================================================================== */
:root {
    --bg-dark: #121214;
    --bg-darker: #09090b;
    --primary-maroon: #8B0000;
    --primary-maroon-dark: #5A0000;
    --accent-gold: #d4af37;
    --accent-neon: #bbfb03;
    --text-main: #f4f4f5;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body.slot-theme {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(10,10,15,0.35), rgba(10,10,15,0.5)), url('../assets/full-bg.png');
    background-size: cover;
    background-attachment: scroll;
    background-position: top center;
    background-repeat: no-repeat;
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* ==========================================================================
   1. STICKY NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, var(--bg-darker), var(--primary-maroon-dark));
    border-bottom: 2px solid var(--accent-gold);
    z-index: 1000;
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headbar-logo {
    height: 45px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}
.btn-login, .btn-register {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}
.btn-register {
    background: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    color: var(--bg-darker);
    box-shadow: 0 0 10px rgba(187,251,3,0.3);
}
.btn-login:hover { background: var(--accent-gold); color: #000; }
.btn-register:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(187,251,3,0.6); }

/* ==========================================================================
   2. MARQUEE
   ========================================================================== */
.marquee-container {
    display: flex;
    background: #000;
    border-bottom: 1px solid #333;
    padding: 5px 0;
    align-items: center;
}
.marquee-icon {
    background: var(--primary-maroon);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.9rem;
    z-index: 2;
}
.marquee-text {
    color: #ccc;
    font-size: 0.85rem;
    padding-top: 2px;
}

/* ==========================================================================
   3. HERO BANNER
   ========================================================================== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: auto;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 20px;
}
.banner-content { 
    padding: 0 15px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-glow-container {
    position: relative;
    text-align: center;
    margin: 0 auto 25px;
    max-width: 400px;
    width: 100%;
}
.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(25px);
    z-index: 0;
    animation: pulseGlow 3s infinite alternate;
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 1; }
}
.banner-logo {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: floatingLogo 4s ease-in-out infinite;
}

@keyframes floatingLogo {
    0%, 100% { 
        transform: translateY(0); 
        filter: drop-shadow(0 0 15px rgba(212,175,55,0.4)) drop-shadow(0 5px 10px rgba(0,0,0,0.8));
    }
    50% { 
        transform: translateY(-12px); 
        filter: drop-shadow(0 0 40px rgba(212,175,55,0.9)) drop-shadow(0 15px 20px rgba(0,0,0,0.6));
    }
}
.platform-tagline {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #fff 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(212,175,55,0.4));
    animation: shineGoldText 3s linear infinite;
}
@keyframes shineGoldText {
    to { background-position: 200% center; }
}
@media (max-width: 768px) {
    .banner-logo { max-width: 240px; margin-bottom: 15px; }
    .platform-tagline { font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 15px; }
}
.banner-subtitle.scroll-hint {
    font-size: 0.85rem;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.6);
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
    text-shadow: none;
    max-width: 95%;
}
.scroll-hint .blink {
    animation: blinkDown 1.5s infinite;
}
@keyframes blinkDown {
    0%, 100% { opacity: 0.3; transform: translateY(-2px); }
    50% { opacity: 1; transform: translateY(2px); }
}
@media (max-width: 768px) {
    .banner-subtitle.scroll-hint { 
        font-size: 0.65rem; 
        padding: 5px 10px; 
        line-height: 1.3; 
        gap: 5px;
    }
}
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.btn-banner {
    flex: 1 1 180px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(180deg, #F9D976 0%, #E9B646 50%, #C18214 100%);
    color: #1a0f00;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid #FFED99;
    box-shadow: 
        inset 0 2px 3px rgba(255,255,255,0.6), 
        inset 0 -3px 4px rgba(120,50,0,0.5), 
        0 6px 15px rgba(0,0,0,0.5), 
        0 0 15px rgba(233,182,70,0.4); 
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    text-decoration: none;
}
.btn-banner:hover { 
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        inset 0 2px 3px rgba(255,255,255,0.8),
        inset 0 -3px 4px rgba(120,50,0,0.5),
        0 10px 20px rgba(0,0,0,0.6),
        0 0 25px rgba(233,182,70,0.7);
    color: #000;
}
.btn-banner:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.3), 0 3px 5px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .banner-buttons { gap: 8px; }
    .btn-banner { flex: 1 1 45%; padding: 10px 5px; font-size: 0.75rem; letter-spacing: -0.3px; }
}

/* ==========================================================================
   4. CATEGORY MENU
   ========================================================================== */
.category-menu {
    max-width: 1200px;
    margin: 10px auto 10px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}
.category-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 3px;
    background: var(--accent-gold);
    z-index: -1;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: rgba(20, 20, 25, 0.4);
    
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    margin: -50px auto 10px;
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    transition: all 0.3s;
    color: #aaa;
    border: 1px solid rgba(255,255,255,0.05); /* Prevent layout jump */
}
.cat-item i { font-size: 1.8rem; margin-bottom: 8px; }
.cat-item span { font-size: 0.8rem; font-weight: 600; text-align: center; color: var(--accent-gold); }
.cat-item:hover, .cat-item:active, .cat-item.active {
    background: linear-gradient(135deg, #cc0000, #660000);
    color: #fff; /* Keeps icons white */
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}
.cat-item:hover .sabung-icon, .cat-item:active .sabung-icon, .cat-item.active .sabung-icon {
    opacity: 1 !important;
}
.cat-item i, .cat-item .sabung-icon {
    /* Animation removed */
}
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        padding: 8px;
    }
    .cat-item { padding: 8px 2px; border-radius: 6px; }
    .cat-item i { font-size: 1.2rem; margin-bottom: 4px; }
    .cat-item span { font-size: 0.65rem; letter-spacing: -0.3px; line-height: 1.1; }
}

/* Togel Results */
.results-grid { 
    display: flex; gap: 10px; justify-content: center; flex-wrap: nowrap; 
    position: relative;
    overflow: hidden;
    padding-bottom: 2px; /* Prevent clipping of card shadows if necessary */
}

.result-card {
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 12px 10px;
    flex: 1;
    min-width: 0; /* Ensures cards can shrink evenly on small screens */
    text-align: center;
    box-shadow: 
        0 0 8px rgba(212,175,55,0.4),
        inset 0 3px 6px rgba(255,255,255,0.2), 
        inset 0 -3px 6px rgba(0,0,0,0.8);
    background-position: center;
    background-size: cover;
    position: relative;
}

.results-grid::after {
    content: '';
    position: absolute;
    top: -75%;
    left: -100%;
    width: 60px;
    height: 250%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.15) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(212, 175, 55, 0.15) 80%, rgba(255, 255, 255, 0) 100%);
    animation: metallicShineAbstract 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}

@keyframes metallicShineAbstract {
    /* 1. Kiri ke Kanan */
    0% { left: -50%; transform: rotate(20deg); opacity: 0; }
    2% { opacity: 1; }
    23% { opacity: 1; }
    25% { left: 120%; transform: rotate(20deg); opacity: 0; }
    
    /* Jeda & Ganti Arah */
    25.1%, 35% { opacity: 0; left: 120%; transform: rotate(-20deg); }

    /* 2. Kanan ke Kiri */
    35.1% { opacity: 0; }
    37% { opacity: 1; }
    58% { opacity: 1; }
    60% { left: -50%; transform: rotate(-20deg); opacity: 0; }
    
    /* Jeda & Ganti Arah */
    60.1%, 70% { opacity: 0; left: -100%; transform: rotate(-50deg); }

    /* 3. Diagonal Pojok Kiri Atas ke Kanan Bawah */
    70.1% { opacity: 0; }
    72% { opacity: 1; }
    93% { opacity: 1; }
    95% { left: 150%; transform: rotate(-50deg); opacity: 0; }
    
    100% { opacity: 0; left: -50%; transform: rotate(20deg); }
}

#res-sydney { background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(10,10,15,0.8) 50%, rgba(0,0,0,0.95) 100%), url('https://flagcdn.com/w320/au.png'); }
#res-singapore { background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(10,10,15,0.8) 50%, rgba(0,0,0,0.95) 100%), url('https://flagcdn.com/w320/sg.png'); }
#res-hongkong { background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(10,10,15,0.8) 50%, rgba(0,0,0,0.95) 100%), url('https://flagcdn.com/w320/hk.png'); }
.res-market {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.res-market img { width: 20px; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.res-date {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 5px;
    font-weight: bold;
}
.res-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(212,175,55, 0.6);
}
@media (max-width: 768px) {
    .results-grid { gap: 5px; }
    .result-card { padding: 8px 3px; }
    .res-number { font-size: 1.15rem; letter-spacing: 0; }
    .res-market { font-size: 0.65rem; gap: 3px; }
    .res-market img { width: 14px; }
    .res-date { font-size: 0.6rem; margin-bottom: 5px; letter-spacing: -0.5px; }
}

/* Prediksi Togel Text */
.prediksi-main-text {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #a0a0a0, 0 3px 0 #7a7a7a, 0 4px 0 #555, 0 5px 0 #333, 0 6px 1px rgba(0,0,0,.5), 0 0 5px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.5), 0 3px 5px rgba(0,0,0,.5), 0 5px 10px rgba(0,0,0,.5), 0 10px 10px rgba(0,0,0,.5);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    white-space: nowrap;
}
.prediksi-sub-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
    font-weight: 800;
    text-shadow: 2px 2px 0px #000;
}

@media (max-width: 768px) {
    .prediksi-main-text {
        font-size: 1.55rem;
        gap: 6px;
    }
    .prediksi-sub-title {
        font-size: 0.75rem;
        letter-spacing: -0.5px;
    }
    .orbiting-dice-container {
        width: 30px;
        height: 30px;
    }
    .orbit-dice {
        font-size: 1.1rem;
    }
}

/* Prediksi Action Buttons (3D Style) */
.prediksi-action-btn {
    padding: 8px 24px;
    border-radius: 8px; /* Classic 3D button shape */
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.1s ease;
    text-shadow: none;
    position: relative;
    border: none;
    outline: none;
    white-space: nowrap;
}
.prediksi-action-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.prediksi-action-btn:active { transform: translateY(4px); }

.prediksi-action-btn.btn-wa { 
    background: #25D366; 
    box-shadow: 0 6px 0 #128c3e, 0 8px 10px rgba(0,0,0,0.2); 
}
.prediksi-action-btn.btn-tg { 
    background: #0088cc; 
    box-shadow: 0 6px 0 #005580, 0 8px 10px rgba(0,0,0,0.2); 
}

.prediksi-action-btn.btn-wa:active { box-shadow: 0 2px 0 #128c3e, 0 2px 5px rgba(0,0,0,0.2); }
.prediksi-action-btn.btn-tg:active { box-shadow: 0 2px 0 #005580, 0 2px 5px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .prediksi-action-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
    }
}

/* Market Buttons */
.market-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.market-btn {
    padding: 6px 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 2px solid var(--accent-gold);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
    font-weight: bold;
    transition: all 0.3s;
}
.market-btn i {
    margin-right: 8px;
    transition: transform 0.3s;
}
.market-btn:hover, .market-btn.active {
    background: linear-gradient(135deg, #cc0000, #660000);
    color: #fff;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transform: translateY(-2px);
}
.market-btn:hover i, .market-btn.active i {
    /* Animation removed */
}

@media (max-width: 768px) {
    .market-buttons {
        gap: 5px;
        flex-wrap: nowrap;
    }
    .market-btn {
        padding: 8px 5px;
        font-size: 0.75rem;
        flex: 1;
        justify-content: center;
        letter-spacing: -0.3px;
    }
    .market-btn i {
        margin-right: 4px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   5. POPULAR GAMES
   ========================================================================== */
.popular-games {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 15px;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.section-heading h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; }
.view-all { color: var(--accent-gold); font-size: 0.9rem; font-weight: 600; }

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.game-card {
    background: #1f1f22;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}
.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}
.game-img-placeholder {
    width: 100%;
    height: 140px;
    background: #2a2a2e;
    position: relative;
}
/* Dummy backgrounds for visual demo */
.game-img-placeholder.olympus { background: linear-gradient(45deg, #4b0082, #9932cc); }
.game-img-placeholder.princess { background: linear-gradient(45deg, #ff1493, #ff69b4); }
.game-img-placeholder.mahjong { background: linear-gradient(45deg, #b22222, #ff4500); }
.game-img-placeholder.bonanza { background: linear-gradient(45deg, #ff8c00, #ffd700); }

.rtp-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--accent-neon);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid var(--accent-neon);
}
.game-info {
    padding: 15px;
    text-align: center;
}
.game-info h4 { font-size: 1rem; margin-bottom: 5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-info p { font-size: 0.75rem; color: #888; margin-bottom: 15px; }
.btn-play {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: var(--primary-maroon);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.game-card:hover .btn-play { background: var(--accent-gold); color: #000; }

/* ==========================================================================
   6. PROGRESSIVE JACKPOT
   ========================================================================== */
.jackpot-section {
    background: linear-gradient(to bottom, #111, var(--primary-maroon-dark));
    padding: 40px 15px;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    margin-bottom: 40px;
}
.jackpot-section h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.jackpot-amount {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--accent-neon);
    text-shadow: 0 0 20px rgba(187,251,3,0.5);
    margin-bottom: 10px;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.slot-footer {
    background: #09090b;
    padding: 40px 15px 20px;
    text-align: center;
}
.footer-seo {
    max-width: 800px;
    margin: 0 auto 30px;
}
.footer-seo h4 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.footer-seo p { color: #666; font-size: 0.85rem; line-height: 1.6; }

.footer-payments { margin-bottom: 30px; }
.footer-payments p { color: #aaa; margin-bottom: 15px; font-size: 0.9rem; }

/* Bola Schedule Layout */
.bola-schedule-box {
    background: rgba(20, 20, 25, 0.4);
    
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.bola-title {
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: -0.5px -0.5px 0 rgba(255,255,255,0.7), 0.5px -0.5px 0 rgba(255,255,255,0.7), -0.5px 0.5px 0 rgba(255,255,255,0.7), 0.5px 0.5px 0 rgba(255,255,255,0.7), 0 2px 0 #c18214, 0 3px 0 #b37310, 0 4px 0 #a2650d, 0 5px 0 #8a5509, 0 6px 5px rgba(0,0,0,0.8), 0 10px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-list { width: 100%; display: flex; flex-direction: column; gap: 15px; }
.match-card {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.match-header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding-bottom: 10px;
    font-size: 0.95rem;
}
.match-league { color: var(--accent-gold); font-weight: bold; text-transform: uppercase; }
.match-time { 
    color: #ccc; 
    font-size: 0.75rem; 
    text-align: center; 
    background: rgba(0,0,0,0.6); 
    padding: 5px 12px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.05);
}
.match-divider {
    border-top: 1px dashed rgba(255,255,255,0.15);
    width: 100%;
}
.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
    word-break: break-word;
}
.team-logo { width: 45px; height: 45px; object-fit: contain; }
.team-name { color: #fff; font-weight: bold; font-size: 0.95rem; text-align: center; }
.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 5px;
    flex: 1.2;
}
.vs-logo {
    width: 45px;
    height: auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.pay-icon {
    padding: 8px 15px;
    background: #1f1f22;
    border: 1px solid #333;
    border-radius: 4px;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 600;
}
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; color: #555; font-size: 0.8rem; }

/* ==========================================================================
   FLOATING LIVECHAT
   ========================================================================== */
.floating-livechat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-maroon);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 999;
    transition: transform 0.3s;
}
.floating-livechat:hover { transform: scale(1.1); }

/* ==========================================================================
   FLOATING CONTACTS (Stacked Bubbles)
   ========================================================================== */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.fc-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: transform 0.3s;
    border: none;
}
.fc-btn:hover { transform: scale(1.1); filter: brightness(1.2); }
.fc-wa { background: #25D366; box-shadow: 0 0 15px rgba(37,211,102,0.8), 0 5px 15px rgba(0,0,0,0.5); }
.fc-tg { background: #0088cc; box-shadow: 0 0 15px rgba(0,136,204,0.8), 0 5px 15px rgba(0,0,0,0.5); }
.fc-lc { background: var(--primary-maroon); box-shadow: 0 0 15px rgba(139,0,0,0.8), 0 5px 15px rgba(0,0,0,0.5); }
.fc-tt { background: #000000; box-shadow: 0 0 15px rgba(254,9,121,0.8), 0 5px 15px rgba(0,0,0,0.5); }

@media (max-width: 768px) {
    .floating-contacts {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    .fc-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   3D TUMBLING DICE ANIMATION
   ========================================================================== */
@keyframes centerOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinDice1 {
    0% { transform: translate(12px, 0) rotate(0deg); }
    100% { transform: translate(12px, 0) rotate(-720deg); } /* Spins counter-clockwise while orbiting */
}
@keyframes spinDice2 {
    0% { transform: translate(-12px, 0) rotate(0deg); }
    100% { transform: translate(-12px, 0) rotate(720deg); } /* Spins clockwise while orbiting */
}
.orbiting-dice-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 45px;
    height: 45px;
    animation: centerOrbit 8s infinite linear;
}
.orbit-dice {
    position: absolute;
    font-size: 1.8rem;
    color: #8B0000;
    -webkit-text-stroke: 1px var(--accent-gold);
    text-shadow: 1px 1px 0 #5A0000, 2px 2px 0 #4A0000, 3px 3px 0 #3A0000, 4px 4px 5px rgba(0,0,0,0.8);
}
@keyframes diceSweepShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(2) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)); }
}
.orbit-dice.d1 { animation: spinDice1 8s infinite linear, diceSweepShine 3s infinite linear; }
.orbit-dice.d2 { animation: spinDice2 8s infinite linear, diceSweepShine 3s infinite linear 1.5s; }

.shine-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Solid white inside the letters so the shine doesn't show there */
    -webkit-text-fill-color: #ffffff;
    /* Transparent stroke on the edges so the background shine shows through! */
    -webkit-text-stroke: 2px transparent;
    background: linear-gradient(120deg, transparent 30%, #ffd700 50%, #fffb00 55%, transparent 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineSweepText 2.5s linear infinite;
    pointer-events: none;
    text-shadow: none;
    z-index: 5;
}

@keyframes shineSweepText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

@media (max-width: 768px) {
    .match-time {
        font-size: 0.6rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
    .team-name {
        font-size: 0.75rem;
    }
}

.logo-container {
    position: relative;
    display: inline-block;
    margin: 0 auto 20px;
}
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(212,175,55,0) 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.falling-coin {
    position: absolute;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.8), 0 0 20px rgba(212,175,55,0.6);
    z-index: 1;
    animation: fallCoin linear infinite;
    pointer-events: none;
}
@keyframes fallCoin {
    0% { transform: translateY(-30px) rotateY(0deg) rotateZ(0deg) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(120px) rotateY(360deg) rotateZ(180deg) scale(1); opacity: 0; }
}
.c1 { left: -10%; top: -10%; animation-duration: 3s; animation-delay: 0s; font-size: 1.5rem; }
.c2 { left: 20%; top: -20%; animation-duration: 4s; animation-delay: 1.2s; font-size: 2rem; }
.c3 { right: -5%; top: 0%; animation-duration: 3.5s; animation-delay: 0.5s; font-size: 1.2rem; }
.c4 { right: 25%; top: -15%; animation-duration: 4.5s; animation-delay: 2.1s; font-size: 1.8rem; }
.c5 { left: 45%; top: -25%; animation-duration: 3.8s; animation-delay: 0.8s; font-size: 1.6rem; }

