/* 
========================================================================
   MANIAKPLAY PREMIUM CYBERPUNK CASINO & GAMING DESIGN SYSTEM
   Dominant Colors: Neon Green (#00ff66) & Absolute Black (#000000)
========================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Playfair+Display:wght@600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    --color-bg-darkest: #000000;
    --color-bg-deep: #031b03;
    --color-bg-card: #0f0f0f;
    --color-neon-primary: #00ff66;
    --color-neon-hover: #00cc55;
    --color-neon-bright: #39ff88;
    --color-neon-glow: rgba(0, 255, 102, 0.45);
    --color-text-white: #ffffff;
    --color-text-muted: #a3a3a3;
    --color-text-dark: #121212;
    --glass-background: rgba(15, 15, 15, 0.65);
    --glass-border: rgba(0, 255, 102, 0.15);
    --font-heading: 'Orbitron', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-numbers: 'Orbitron', monospace;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --neon-box-shadow: 0 0 15px var(--color-neon-glow);
    --neon-text-shadow: 0 0 8px var(--color-neon-glow);
}

/* --- Core Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-darkest);
    color: var(--color-text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-deep);
    border: 2px solid var(--color-neon-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-primary);
}

/* --- HTML5 Canvas Particle Overlay --- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-darkest);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--color-neon-primary));
    animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

.loader-bar-container {
    width: 250px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 15px auto;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 102, 0.2);
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-neon-primary);
    box-shadow: 0 0 10px var(--color-neon-primary);
    animation: fillLoader 2.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
}

/* --- Typography Utilities --- */
.text-neon-green {
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--color-neon-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-neon-primary);
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(0, 255, 102, 0.15);
    margin-bottom: 20px;
}

.sub-heading {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--color-text-white);
    text-transform: uppercase;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-left: 4px solid var(--color-neon-primary);
    padding-left: 20px;
}

.text-center-header {
    border-left: none;
    padding-left: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.glow-green {
    background-color: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    box-shadow: 0 0 15px var(--color-neon-glow);
}

.glow-green:hover {
    background-color: var(--color-neon-bright);
    box-shadow: 0 0 25px var(--color-neon-primary);
    transform: translateY(-2px);
}

.btn-outline-neon {
    background: transparent;
    border: 1px solid var(--color-neon-primary);
    color: var(--color-neon-primary);
    box-shadow: inset 0 0 10px rgba(0, 255, 102, 0.05);
}

.btn-outline-neon:hover {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    box-shadow: 0 0 20px var(--color-neon-glow);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Sticky Header & Navbar --- */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95); /* Hitam ke-abuan */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.navbar-container {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Cegah kontainer logo menyusut */
}

.main-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    animation: cyberLogoPulse 2.5s ease-in-out infinite alternate;
}

.main-logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak teks dirapatkan */
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 8px; /* Padding samping dikurangi */
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: var(--color-neon-primary);
    box-shadow: 0 0 10px var(--color-neon-primary);
    transition: var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: calc(100% - 24px);
}

.nav-item:hover {
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
}

.live-rtp-nav {
    color: #ffaa00 !important;
    font-weight: 800;
}

.blink-icon {
    animation: blinkEffect 1s infinite alternate;
}

.nav-auth-mobile {
    display: none; /* Disembunyikan di desktop agar tidak double */
}

.nav-auth-desktop {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak tombol dirapatkan */
    flex-shrink: 0;
}

.btn-login-nav {
    background: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-login-nav:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-white);
}

.btn-register-nav {
    padding: 10px 22px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-white);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* --- Running Text Marquee --- */
.marquee-wrapper {
    background: #031b03;
    border-bottom: 1px solid var(--color-neon-primary);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 50;
}

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

.marquee-item {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Glassmorphic Cards --- */
.glass-card {
    background: var(--glass-background);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: var(--color-neon-primary);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.25);
    transform: translateY(-4px);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 35px 0 30px 0;
    background-size: cover;
    background-position: center;
    z-index: 10;
    border-bottom: 1px solid var(--glass-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.hero-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: titleGlow 3s infinite alternate;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.jackpot-counter-box {
    background: rgba(3, 27, 3, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-neon-primary);
    border-radius: 8px;
    padding: 20px 25px;
    max-width: 580px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15), inset 0 0 15px rgba(0, 255, 102, 0.1);
}

.jackpot-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
    margin-bottom: 8px;
}

.jackpot-value {
    font-family: var(--font-numbers);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-white);
    letter-spacing: 2px;
    text-shadow: 0 0 12px var(--color-neon-glow);
}

.jackpot-indicator {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.65rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--color-neon-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-neon-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-neon-primary);
    animation: pulseDot 1s infinite alternate;
}

.hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.btn-cta {
    padding: 16px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--color-text-white);
    color: var(--color-text-white);
}

.btn-login:hover {
    background: var(--color-text-white);
    color: var(--color-bg-darkest);
    transform: translateY(-2px);
}

.btn-rtp {
    background: transparent;
    border: 2px solid #ffaa00;
    color: #ffaa00;
}

.btn-rtp:hover {
    background: #ffaa00;
    color: var(--color-bg-darkest);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
    transform: translateY(-2px);
}

.btn-download {
    background: transparent;
    border: 2px solid var(--color-neon-primary);
    color: var(--color-neon-primary);
}

.btn-download:hover {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    box-shadow: 0 0 20px var(--color-neon-glow);
    transform: translateY(-2px);
}

/* --- Live Stats Card --- */
.live-stats-card {
    padding: 30px;
    border-width: 2px;
}

.stats-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-numbers);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-neon-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.recent-wins-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: var(--color-neon-primary);
}

.win-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.win-feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    animation: fadeInSlide 0.5s ease forwards;
}

.feed-username {
    font-weight: 600;
}

.feed-game {
    color: var(--color-text-muted);
}

.feed-amount {
    color: var(--color-neon-primary);
    font-weight: 700;
    font-family: var(--font-numbers);
}

/* --- Section Formatting --- */
.section-padding {
    padding: 18px 0;
}

/* --- Slot Games Section --- */
.slot-section {
    background-color: var(--color-bg-darkest);
    position: relative;
}

.feature-banner-card {
    display: flex;
    padding: 22px 50px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 22px;
    min-height: 260px;
    align-items: center;
    border-width: 2px;
}

.feature-banner-content {
    max-width: 600px;
}

.banner-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ffaa00;
    color: var(--color-bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.banner-headline {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.banner-paragraph {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.banner-bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.bullet-item {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1; /* Diubah menjadi persegi agar gambar tidak terpotong */
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.game-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.game-rtp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    font-family: var(--font-numbers);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 0 10px var(--color-neon-glow);
}

.game-card-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.game-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-white);
}

.game-marketing {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-neon-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.btn-game-play {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    padding: 10px 15px;
    font-size: 0.75rem;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-card:hover .btn-game-play {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    border-color: var(--color-neon-primary);
    box-shadow: 0 0 15px var(--color-neon-glow);
}

/* --- Provider Scrolling Ticker --- */
.provider-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    position: relative;
}

.provider-section-title::before,
.provider-section-title::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    vertical-align: middle;
    margin: 0 15px;
}

.provider-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
}

.provider-ticker-content {
    display: flex;
    white-space: nowrap;
    animation: providerMarquee 35s linear infinite;
    gap: 30px;
}

.provider-logo-card {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.provider-logo-card:hover {
    color: var(--color-neon-primary);
    border-color: var(--color-neon-primary);
    background: rgba(0, 255, 102, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

/* --- Togel Section --- */
.togel-section {
    position: relative;
    z-index: 10;
}

.togel-flex-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.togel-visual-box {
    padding: 40px;
    text-align: center;
    border-width: 2px;
}

.togel-gacha-chamber {
    min-height: 140px;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.gacha-ball {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-bg-darkest);
    border: 2px solid rgba(255,255,255,0.2);
    animation: float-ball 3s ease-in-out infinite;
    flex-shrink: 0;
}

.gacha-plus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-neon-primary);
    margin: 0 5px;
    text-shadow: 0 0 10px var(--color-neon-glow);
    flex-shrink: 0;
}

.ball-glow-special {
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), inset -5px -5px 15px rgba(0,0,0,0.5);
    border-color: #ffd700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    animation-delay: 0.5s;
}

.ball-result-blue {
    background: radial-gradient(circle at 30% 30%, #FFD700, #B8860B) !important;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), inset -5px -5px 15px rgba(0,0,0,0.5) !important;
    border-color: #FFD700 !important;
    color: #000 !important;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4) !important;
}

.ball-glow-1 { animation-delay: 0s; }
.ball-glow-2 { animation-delay: 0.5s; }
.ball-glow-3 { animation-delay: 1s; }
.ball-glow-4 { animation-delay: 1.5s; }

.togel-marketing-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
    margin-bottom: 12px;
}

.togel-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.togel-numbers-live {
    display: inline-flex;
    gap: 12px;
    background: #031b03;
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px solid var(--color-neon-primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
    margin-bottom: 15px;
}

.live-num {
    font-family: var(--font-numbers);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
}

.live-num-indicator {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffaa00;
}

.spinning-icon {
    animation: spin 3s linear infinite;
}

.togel-content-box {
    padding: 40px;
}

.premium-header-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.premium-header-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.togel-promo-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-neon-primary);
}

.togel-providers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.togel-provider-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    transition: var(--transition-smooth);
}

.togel-provider-row:hover {
    background: rgba(0, 255, 102, 0.02);
    border-color: rgba(0, 255, 102, 0.3);
}

.country-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flag-icon {
    font-size: 1.6rem;
    color: var(--color-neon-primary);
}

.provider-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
}

.provider-country {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.bet-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-status {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.badge-status.online {
    background: rgba(0, 255, 102, 0.15);
    color: var(--color-neon-primary);
    border: 1px solid var(--color-neon-primary);
}

.btn-bet-now {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 4px;
}

.btn-bet-now:hover {
    background: var(--color-neon-bright);
    box-shadow: 0 0 10px var(--color-neon-glow);
}

/* --- Casino Section --- */
.casino-hero-card {
    padding: 28px 50px;
    background-size: cover;
    background-position: center;
    border-width: 2px;
    min-height: 240px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.casino-hero-content {
    max-width: 650px;
}

.casino-headline {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.casino-paragraph {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.casino-promo-text-bold {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
    margin-bottom: 25px;
}

.casino-badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.c-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.casino-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

.c-provider-card {
    padding: 16px 20px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
}

.c-provider-card:hover {
    border-color: var(--color-neon-primary);
    color: var(--color-neon-primary);
    background: rgba(0, 255, 102, 0.02);
}

/* --- Sports Section --- */
.sports-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 760px;
    margin: 0 auto;
}

.sports-highlight-card {
    padding: 40px;
    border-width: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sports-highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.highlight-promo-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.sports-stat-ticker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.ticker-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.t-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--color-neon-primary);
    margin-bottom: 5px;
}

.t-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.sports-providers-box {
    padding: 40px;
}

.provider-box-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sports-providers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-provider-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px 18px;
    transition: var(--transition-smooth);
}

.s-provider-item:hover {
    border-color: var(--color-neon-primary);
    background: rgba(0, 255, 102, 0.02);
}

.s-prov-icon {
    font-size: 1.1rem;
}

.s-prov-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    flex-grow: 1;
    margin-left: 15px;
}

.s-prov-badge {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
}

.s-provider-item:hover .s-prov-badge {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
}

/* --- Promo Section Slider --- */
.promo-slider-wrapper {
    position: relative;
    width: 100%;
}

.promo-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.promo-track::-webkit-scrollbar {
    display: none;
}

.promo-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: center;
    padding: 0;
    border-width: 1px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    aspect-ratio: 2.2 / 1;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.promo-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.promo-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 15px var(--color-neon-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.promo-slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--color-neon-bright);
}

.promo-slider-btn.prev-btn {
    left: -20px;
}

.promo-slider-btn.next-btn {
    right: -20px;
}

.promo-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.3));
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-text-white);
}

.promo-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-promo-claim {
    background: transparent;
    border: 1px solid var(--color-neon-primary);
    color: var(--color-neon-primary);
    padding: 8px 20px;
    font-size: 0.75rem;
    border-radius: 4px;
    width: 100%;
}

.promo-card:hover .btn-promo-claim {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    box-shadow: 0 0 12px var(--color-neon-glow);
}

/* --- APK Download Section --- */
.apk-card {
    padding: 28px 50px;
    border-width: 2px;
    border-color: rgba(0, 255, 102, 0.25);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

.apk-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    text-align: center;
}

.apk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 102, 0.1);
    color: var(--color-neon-primary);
    border: 1px solid var(--color-neon-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.apk-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.apk-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.apk-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.apk-feat-item {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-apk-download {
    padding: 15px 30px;
    font-size: 0.9rem;
}

.apk-visual-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dual-phone-composition {
    position: relative;
    width: 380px;
    height: 520px;
}

.phone-mockup {
    width: 250px;
    height: 480px;
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 36px;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.2), inset 0 0 15px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-back {
    position: absolute;
    top: 20px;
    left: 0;
    transform: rotate(-8deg) scale(0.85);
    z-index: 1;
    filter: brightness(0.65);
    transition: var(--transition-smooth);
}

.phone-front {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: rotate(6deg);
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.4);
}

.dual-phone-composition:hover .phone-back {
    transform: rotate(-12deg) scale(0.9) translateX(-20px);
    filter: brightness(0.8);
}

.dual-phone-composition:hover .phone-front {
    transform: rotate(2deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-darkest);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 102, 0.1);
    position: relative;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.05), transparent);
    pointer-events: none;
}

.phone-screen-logo {
    width: 150px;
    filter: drop-shadow(0 0 8px var(--color-neon-primary));
}

.phone-stats {
    position: absolute;
    bottom: 20px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-neon-primary);
}

/* --- Social Media Community Grid --- */
.social-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.social-item-card {
    padding: 30px;
    text-align: center;
    cursor: pointer;
    border-width: 1px;
}

.ticker-social-card {
    min-width: 260px;
    flex-shrink: 0;
    margin-right: 25px;
    margin-bottom: 0;
}

.social-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.social-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.social-info {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Color specific glows on hover */
.wa-glow:hover {
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}
.wa-glow:hover .social-icon { color: #25d366; transform: scale(1.1); }

.tg-glow:hover {
    border-color: #229ed9;
    box-shadow: 0 0 15px rgba(34, 158, 217, 0.3);
}
.tg-glow:hover .social-icon { color: #229ed9; transform: scale(1.1); }

.fb-glow:hover {
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
}
.fb-glow:hover .social-icon { color: #1877f2; transform: scale(1.1); }

.lc-glow:hover {
    border-color: var(--color-neon-primary);
    box-shadow: 0 0 15px var(--color-neon-glow);
}
.lc-glow:hover .social-icon { color: var(--color-neon-primary); transform: scale(1.1); }

/* --- Elegant Footer --- */
.footer-area {
    background: #030a03;
    position: relative;
    border-top: 1px solid rgba(0, 255, 102, 0.1);
    z-index: 10;
}

.footer-top-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-neon-primary), transparent);
    width: 100%;
    animation: borderStretch 3s infinite linear;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding: 80px 20px 50px 20px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
    animation: cyberLogoPulse 2.5s ease-in-out infinite alternate;
}

.footer-brand-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    max-width: 400px;
}

.security-badges {
    display: flex;
    gap: 15px;
}

.sec-badge {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--color-text-white);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links-list a:hover {
    color: var(--color-neon-primary);
    padding-left: 5px;
}

.compliance-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.compliance-icons {
    display: flex;
    gap: 12px;
}

.comp-icon {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border-radius: 4px;
}

.footer-copyright-bottom {
    background: var(--color-bg-darkest);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 25px 0 35px 0;
}

.copy-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
}

.system-time {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-neon-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Floating Community Buttons (Desktop) --- */
.floating-community-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 990;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-text-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-btn-whatsapp {
    background-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.f-btn-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
}

.f-btn-livechat {
    background-color: var(--color-neon-primary);
    color: var(--color-bg-darkest);
    box-shadow: 0 4px 15px var(--color-neon-glow);
}
.f-btn-livechat:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: var(--color-neon-bright);
    box-shadow: 0 4px 25px var(--color-neon-primary);
}

/* --- Mobile Sticky Action Bar --- */
.mobile-sticky-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-neon-primary);
    z-index: 1000;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 15px rgba(0, 255, 102, 0.15);
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    gap: 4px;
    color: var(--color-text-muted);
}

.mobile-action-btn i {
    font-size: 1.1rem;
}

.mobile-action-btn:hover,
.mobile-action-btn.active {
    color: var(--color-neon-primary);
}

.action-register {
    background: var(--color-neon-primary);
    color: var(--color-bg-darkest) !important;
}

.action-register:hover {
    background: var(--color-neon-bright);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes providerMarquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes fillLoader {
    0% { width: 0%; }
    50% { width: 65%; }
    100% { width: 100%; }
}

@keyframes pulseGlow {
    0% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1.02); opacity: 1; }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 102, 0.2); }
    100% { text-shadow: 0 0 25px rgba(0, 255, 102, 0.7), 0 0 40px rgba(0, 255, 102, 0.4); }
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

@keyframes fadeInSlide {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatGacha {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes borderStretch {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes blinkEffect {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes cyberLogoPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.4));
        transform: translateY(0px) scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.8)) drop-shadow(0 0 5px rgba(0, 255, 102, 0.5));
        transform: translateY(-2px) scale(1.02);
    }
}

/* --- Logo Shine Effect --- */
.logo-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
}
.logo-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineSweep 5s infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes shineSweep {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* --- Winner Notification Toast --- */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}
.winner-toast {
    background: rgba(3, 27, 3, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-neon-primary);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    animation: slideInLeft 0.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards, fadeOut 0.5s ease 3.5s forwards;
    pointer-events: auto;
}
.toast-icon {
    font-size: 1.8rem;
    color: var(--color-neon-primary);
    text-shadow: var(--neon-text-shadow);
}
.toast-details {
    display: flex;
    flex-direction: column;
}
.toast-name {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.toast-win {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-neon-primary);
}
@keyframes slideInLeft {
    0% { transform: translateX(-150%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop / Laptop Large */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-grid {
        gap: 30px;
    }
}

/* Tablet Landscape & Small Laptop */
@media (max-width: 1100px) {
    .nav-list {
        gap: 10px;
    }
    .nav-item {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .navbar-container {
        height: 75px;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition-smooth);
        z-index: 999;
        display: flex;
        align-items: center;
        border-top: 1px solid var(--glass-border);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    .nav-item {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
        width: 100%;
        height: auto;
    }
    .nav-auth-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    .nav-auth-desktop {
        display: none;
    }
    
    /* Toggle active hamburger bars style */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .jackpot-counter-box {
        margin: 0 auto 35px auto;
    }
    .hero-cta-group {
        margin: 0 auto;
    }
    .togel-flex-layout {
        grid-template-columns: 1fr;
    }
    .sports-grid-layout {
        grid-template-columns: 1fr;
    }
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-column {
        grid-column: span 2;
    }
    .promo-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* --- LITE MODE OPTIMIZATION FOR 1GB RAM --- */
    * {
        /* Animasi diaktifkan kembali, tetapi tetap mematikan blur (backdrop) untuk RAM kecil */
        /* transition-duration: 0.2s !important; */
    }
    .glass-card, .glass-panel, header, .mobile-action-bar {
        /* Matikan efek kaca buram (backdrop-filter) yang sangat berat untuk GPU HP */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(10, 15, 10, 0.98) !important; /* Ganti dengan warna solid gelap */
    }
    .btn-neon, .btn-outline-neon, .main-logo, .gacha-ball, .jackpot-value {
        /* Matikan efek cahaya berlapis (box-shadow/drop-shadow) yang membuat HP lag saat scroll */
        box-shadow: none !important;
        filter: none !important;
        text-shadow: none !important;
    }
    #particleCanvas {
        display: none !important; /* Sembunyikan canvas partikel di HP */
    }
    /* ------------------------------------------- */

    body {
        padding-bottom: 60px; /* Space for sticky mobile action bar */
    }
    .section-padding {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    .jackpot-value {
        font-size: 1.9rem;
    }
    .hero-cta-group {
        grid-template-columns: 1fr;
    }

    .feature-banner-card {
        padding: 30px 20px;
        min-height: auto;
    }
    .banner-headline {
        font-size: 1.8rem;
    }
    .banner-bullet-grid {
        grid-template-columns: 1fr;
    }
    .togel-visual-box {
        padding: 20px;
    }
    .togel-gacha-chamber {
        min-height: 100px;
        height: auto;
        gap: 6px;
        padding: 10px;
        flex-wrap: nowrap;
    }
    .gacha-ball {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .gacha-plus {
        font-size: 1.3rem;
        margin: 0 2px;
        flex-shrink: 0;
    }
    .live-num {
        font-size: 1.6rem;
    }
    .casino-hero-card {
        padding: 35px 20px;
    }
    .casino-headline {
        font-size: 1.8rem;
    }
    .sports-highlight-card {
        padding: 30px 20px;
    }
    .sports-highlight-card h3 {
        font-size: 1.5rem;
    }
    .sports-stat-ticker {
        grid-template-columns: 1fr;
    }
    .promo-card {
        flex: 0 0 100%;
    }
    .promo-slider-btn.prev-btn { left: 0; }
    .promo-slider-btn.next-btn { right: 0; }
    .apk-card {
        padding: 30px 20px;
    }
    .apk-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dual-phone-composition {
        margin: 0 auto;
        transform: scale(0.9);
    }
    .apk-title {
        font-size: 1.7rem;
    }
    .footer-content-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 30px;
    }
    .footer-brand-column {
        grid-column: span 1;
    }
    .copy-flex {
        flex-direction: column;
        text-align: center;
    }
    
    /* Show mobile sticky action bar */
    .mobile-sticky-action-bar {
        display: grid;
    }
    
    /* Lower floating community buttons on mobile to not overlap action bar */
    .floating-community-buttons {
        bottom: 80px;
        right: 15px;
    }
    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}

.phone-anim { animation: floatPhone 3.5s ease-in-out infinite alternate; }
@keyframes floatPhone { 0% { transform: translateY(0); filter: drop-shadow(0 5px 15px rgba(0, 255, 102, 0.2)); } 100% { transform: translateY(-20px); filter: drop-shadow(0 25px 35px rgba(0, 255, 102, 0.6)); } }

/* ============================================
   FLOATING CONTACT BUBBLES (Right Side Widget)
   ============================================ */
.floating-contacts {
    position: fixed;
    right: 20px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.fc-bubble {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
    animation: fc-pop 0.55s cubic-bezier(.34,1.56,.64,1) backwards;
}

.fc-bubble:nth-child(1) { animation-delay: 0.05s; }
.fc-bubble:nth-child(2) { animation-delay: 0.15s; }
.fc-bubble:nth-child(3) { animation-delay: 0.25s; }
.fc-bubble:nth-child(4) { animation-delay: 0.35s; }

.fc-bubble:hover {
    transform: scale(1.12) translateX(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

/* Authentic brand colors */
.fc-whatsapp  { background: #25D366; }
.fc-telegram  { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); }
.fc-facebook  { background: #1877F2; }
.fc-livechat  { background: linear-gradient(135deg, #00ff66 0%, #00b34a 100%); color: #001a08; }

/* Subtle pulsing ring on WhatsApp (primary contact) */
.fc-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: fc-pulse 2s ease-out infinite;
    pointer-events: none;
}

/* Tooltip label on hover */
.fc-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(15, 20, 25, 0.92);
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.fc-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(15, 20, 25, 0.92);
}
.fc-bubble:hover .fc-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes fc-pulse {
    0%   { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.55); opacity: 0; }
}
@keyframes fc-pop {
    from { transform: scale(0) rotate(-45deg); opacity: 0; }
    to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-contacts {
        right: 14px;
        bottom: 85px;
        gap: 10px;
    }
    .fc-bubble {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .fc-tooltip { display: none; }
}

/* ============================================
   KELUARAN TOGEL WIDGET (HK / SDY / SGP)
   3 flag bullets - stay 3-in-a-row at ALL viewports
   ============================================ */
.keluaran-widget {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(14px, 3vw, 40px);
    margin: 6px auto 28px auto;
    padding: 8px 4px;
    width: 100%;
    max-width: 920px;
}

.kel-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.kel-label {
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 1.4vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--color-neon-primary);
    text-shadow: 0 0 10px var(--color-neon-glow);
    text-transform: uppercase;
}

.kel-flag {
    width: clamp(78px, 11vw, 130px);
    height: clamp(78px, 11vw, 130px);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-neon-primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.5),
                0 10px 25px rgba(0, 0, 0, 0.8),
                inset 0 -8px 20px rgba(0, 0, 0, 0.8),
                inset 0 6px 15px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1),
                box-shadow 0.35s ease;
}

.kel-flag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(0, 0, 0, 0.6) 60%,
                rgba(0, 0, 0, 0.85) 100%);
    border-radius: 50%;
}

.kel-flag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.7),
                0 15px 35px rgba(0, 0, 0, 0.9),
                inset 0 -8px 25px rgba(0, 0, 0, 0.9),
                inset 0 6px 15px rgba(255, 255, 255, 0.5);
}

.kel-number {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.6vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0 #000, 
                 -2px -2px 0 #000, 
                 2px -2px 0 #000, 
                 -2px 2px 0 #000, 
                 0 6px 15px rgba(0, 0, 0, 1);
    letter-spacing: 2px;
}

.kel-country {
    font-family: var(--font-heading);
    font-size: clamp(0.65rem, 1.4vw, 0.8rem);
    font-weight: 800;
    color: #fff;
    background: rgba(0, 255, 102, 0.15);
    border: 1px solid rgba(0, 255, 102, 0.45);
    border-radius: 4px;
    padding: 3px 12px;
    letter-spacing: 2px;
}

.kel-date {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(0.7rem, 1.3vw, 0.88rem);
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   TIPSTER BUTTON (under sports ODDS TERTINGGI)
   ============================================ */
.btn-tipster {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 22px;
    width: 100%;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-tipster:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(34, 158, 217, 0.55);
}
.btn-tipster i {
    font-size: 1.3rem;
}

/* ============================================
   ANGKA LENGKAP CTA (Togel section - WA + TG)
   ============================================ */
.angka-lengkap-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.btn-angka-wa,
.btn-angka-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    font-family: var(--font-heading);
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.btn-angka-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-angka-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

.btn-angka-tg {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 6px 18px rgba(34, 158, 217, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-angka-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(34, 158, 217, 0.55);
}

.btn-angka-wa i,
.btn-angka-tg i {
    font-size: 1.25rem;
}

/* ============================================
   SECTION HEADER (centered, no green underline)
   ============================================ */
.section-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    text-align: center;
}

.section-title-btn {
    font-family: var(--font-heading);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0px 40px 6px 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,255,102,0.18) 0%, rgba(0,255,102,0.05) 100%);
    border: 1px solid rgba(0,255,102,0.4);
    box-shadow: 0 0 18px rgba(0,255,102,0.15), inset 0 0 18px rgba(0,255,102,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}
.section-title-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(0,255,102,0.32) 0%, rgba(0,255,102,0.12) 100%);
    box-shadow: 0 6px 28px rgba(0,255,102,0.4);
}

.text-gold-3d {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #FFF7D6 0%, #D4AF37 50%, #AA771C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0px 1px 0px #8a5a19,
        0px 2px 0px #704711,
        0px 3px 0px #5e3a0b,
        0px 4px 5px rgba(0,0,0,0.8),
        0px 0px 15px rgba(212, 175, 55, 0.4);
}

.section-cta-mini {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    text-transform: lowercase;
    margin-top: -2px;
}

/* ============================================
   SPORTS TICKER + TIPSTER ROW (sejajar ke kanan)
   ============================================ */
.sports-ticker-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    margin-top: 16px;
}
.sports-ticker-row .ticker-box {
    flex: 1;
    min-width: 0;
    margin: 0;
}

/* TIPSTER button - compact version */
.btn-tipster {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(34,158,217,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 0;
    width: auto;
}
.btn-tipster:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,158,217,0.55);
}
.btn-tipster i { font-size: 1.15rem; }
.tipster-emoji { font-size: 1.1rem; line-height: 1; }
.tipster-text { white-space: nowrap; }

/* ============================================
   ANGKA LENGKAP CTA - 2 buttons in 1 row at ALL viewports
   ============================================ */
.angka-lengkap-cta {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.btn-angka-wa, .btn-angka-tg {
    padding: 11px 12px;
    font-size: clamp(0.66rem, 1.2vw, 0.85rem);
    letter-spacing: 0.8px;
}
.btn-angka-wa i, .btn-angka-tg i { font-size: 1.1rem; }

/* ============================================
   MARKET BUTTONS (HK / SDY / SGP) - 2-stage
   ============================================ */
.prediksi-market-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    justify-content: center;
}
.btn-market {
    flex: 1;
    max-width: 140px;
    padding: 10px 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.28s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-market:hover {
    border-color: rgba(0,255,102,0.5);
    background: rgba(0,255,102,0.05);
}
.btn-market.is-active {
    background: linear-gradient(135deg, #00ff66 0%, #00b34a 100%);
    color: #001a08;
    border-color: #00ff66;
    box-shadow: 0 0 16px rgba(0,255,102,0.6), inset 0 0 12px rgba(255,255,255,0.18);
    font-weight: 900;
}
.btn-market.is-spinning i { animation: spinFwd 1.4s linear infinite; }
.btn-market.is-spinning { pointer-events: none; }
@keyframes spinFwd {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SECTION padding reduction (further)
   ============================================ */
.section-padding {
    padding: 12px 0;
}
.togel-marketing-tagline { margin: 8px 0 !important; font-size: clamp(0.85rem,1.7vw,1rem); }
.togel-visual-box { padding: 18px !important; }
.sports-highlight-card { padding: 18px !important; }
.sports-highlight-card h3 { margin-bottom: 8px !important; }
.highlight-promo-text { margin-bottom: 10px !important; }
.apk-card { padding: 20px 28px !important; }
.apk-title { margin-bottom: 6px !important; font-size: clamp(1.2rem,2.4vw,1.8rem) !important; }
.apk-desc { margin-bottom: 12px !important; }
.apk-features { margin-bottom: 14px !important; }

/* ============================================
   APK Section - Centered features + Clickable title
   ============================================ */
.apk-text-box {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.apk-title-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.28s ease;
}
.apk-title-link:hover { transform: translateY(-2px); }
.apk-title-link .apk-title {
    transition: color 0.28s ease, text-shadow 0.28s ease;
    color: var(--color-neon-primary);
    text-shadow: 0 0 14px rgba(0,255,102,0.4);
}
.apk-title-link:hover .apk-title {
    text-shadow: 0 0 26px rgba(0,255,102,0.85), 0 0 8px rgba(0,255,102,0.6);
}

.apk-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 auto 4px auto !important;
}
.apk-feat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* ============================================
   UNIFIED FULL-PAGE BACKGROUND (no hard edges)
   ============================================ */
body {
    background:
        radial-gradient(ellipse 1200px 700px at 50% 0%, rgba(0, 255, 102, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 900px 600px at 80% 35%, rgba(0, 255, 102, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 900px 600px at 20% 65%, rgba(0, 100, 50, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 1200px 800px at 50% 100%, rgba(0, 255, 102, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #020a07 0%, #03110b 25%, #021008 50%, #020e09 75%, #020a07 100%) !important;
    background-attachment: fixed;
    background-size: cover;
}

/* Subtle grain texture overlay for depth */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 255, 102, 0.025) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.6;
}

/* All sections: transparent so unified bg flows through */
.hero-section,
.togel-section,
.sports-section,
.apk-section {
    background: transparent !important;
    position: relative;
}

/* Soft section dividers (vignette) */
.togel-section::before,
.sports-section::before,
.apk-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 255, 102, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    /* Disabled scroll animation for performance */
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger inner elements */
.reveal.in-view .container > * {
    animation: revealFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.reveal.in-view .container > *:nth-child(1) { animation-delay: 0.05s; }
.reveal.in-view .container > *:nth-child(2) { animation-delay: 0.15s; }
.reveal.in-view .container > *:nth-child(3) { animation-delay: 0.25s; }
.reveal.in-view .container > *:nth-child(4) { animation-delay: 0.35s; }
@keyframes revealFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LITE MODE (auto-detected old/low-end devices)
   Disables heavy effects only on weak hardware
   ============================================ */
body.lite-mode .reveal { opacity: 1; transform: none; transition: none; }
body.lite-mode .reveal.in-view .container > * { animation: none; }
body.lite-mode *, body.lite-mode *::before, body.lite-mode *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.1s !important;
}
body.lite-mode body::before { display: none; }
body.lite-mode .fc-whatsapp::before { animation: none; opacity: 0; }
body.lite-mode .kel-flag { box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* Respect user OS preference too */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .reveal.in-view .container > * { animation: none; }
}

/* ============================================
   FULL-PAGE CINEMATIC BACKGROUND (Gen via Nano Banana)
   Single 1920x1887 composite - covers entire scroll area
   ============================================ */
body {
    background:
        linear-gradient(180deg, rgba(2,8,6,0.78) 0%, rgba(3,16,10,0.72) 50%, rgba(2,12,8,0.82) 100%),
        url('assets/bg_composite.jpg') center top / cover no-repeat fixed,
        #020a07 !important;
    background-attachment: scroll, fixed, fixed !important;
}

/* Animated grain overlay disabled when cinematic bg is on */
body::before { display: none !important; }

/* ============================================
   UNIFORM BOXED LAYOUT (every section = neon green box)
   ============================================ */
.container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.hero-section .container,
.togel-section .container,
.sports-section .container,
.apk-section .container {
    background: rgba(2, 10, 6, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(0, 255, 102, 0.32);
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4) inset,
        0 0 28px rgba(0, 255, 102, 0.10),
        0 8px 30px rgba(0, 0, 0, 0.45);
    padding: 24px 28px !important;
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    position: relative;
}

/* Remove duplicate inner card backgrounds when section already a box */
.togel-section .togel-visual-box,
.sports-section .sports-highlight-card,
.apk-section .apk-card {
    background: rgba(0, 0, 0, 0.32) !important;
    border: 1px solid rgba(0, 255, 102, 0.22) !important;
    box-shadow: none !important;
}

/* Section padding stays compact */
.section-padding { padding: 10px 0 !important; }
.hero-section { padding: 16px 0 0 0 !important; }

/* Tighten margins inside boxes for cleaner alignment */
.hero-section .container > *,
.togel-section .container > *,
.sports-section .container > *,
.apk-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-section .container,
    .togel-section .container,
    .sports-section .container,
    .apk-section .container {
        padding: 18px 14px !important;
        margin-top: 12px !important;
        margin-bottom: 12px !important;
        border-radius: 10px;
    }
}

/* Slight reveal-friendly tweaks (reveal already implemented) */
.reveal { will-change: opacity, transform; }

/* ============================================
   HERO LOGO IMAGE (replaces text title)
   ============================================ */
.hero-logo-img {
    display: block;
    max-width: min(70vw, 420px);
    height: auto;
    margin: 0 auto 8px auto;
    filter: drop-shadow(0 0 22px rgba(0, 255, 102, 0.55))
            drop-shadow(0 0 8px rgba(0, 255, 102, 0.35));
    transition: filter 0.35s ease, transform 0.35s ease;
}
.hero-logo-img:hover {
    filter: drop-shadow(0 0 32px rgba(0, 255, 102, 0.85))
            drop-shadow(0 0 12px rgba(0, 255, 102, 0.55));
    transform: scale(1.02);
}

/* Compact on small screens */
@media (max-width: 480px) {
    .hero-logo-img { max-width: 80vw; }
}

/* ============================================
   JADWAL PERTANDINGAN (MATCHES LAYOUT) - LUXURY & COMPACT
   ============================================ */
.matches-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.match-liga-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    border-radius: 8px;
    padding: 8px 10px;
    position: relative;
    overflow: hidden;
}
.match-liga-title {
    text-align: center;
    font-family: 'Playfair Display', serif; /* Luxury font */
    font-size: 0.85rem;
    color: #FFFFFF;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4px;
}
.match-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.match-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.match-team img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.8));
}
.match-team-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #F8F4E6; /* Off-white luxury */
    text-align: center;
    letter-spacing: 0.5px;
}
.match-vs {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4AF37;
    padding: 0 8px;
    opacity: 0.8;
}
.match-time {
    text-align: center;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.65rem;
    color: #bbb;
    margin-top: 4px;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    align-self: center;
}

/* ============================================
   SEO ARTICLE & FAQ (Cyberpunk Accordion)
   ============================================ */
.seo-section {
    max-width: 1200px;
    margin: 20px auto 60px auto;
    padding: 0 15px;
}

.seo-title {
    font-family: var(--font-heading, 'Orbitron', sans-serif);
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.seo-scrollbox {
    background: rgba(10, 20, 15, 0.7);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    max-height: 120px; /* Long but doesn't take up space */
    overflow-y: auto;
    margin-bottom: 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

/* Custom Scrollbar for Cyberpunk feel */
.seo-scrollbox::-webkit-scrollbar {
    width: 6px;
}
.seo-scrollbox::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
.seo-scrollbox::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 102, 0.5);
    border-radius: 8px;
}
.seo-scrollbox::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 102, 0.8);
}

.seo-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 15px;
    text-align: justify;
}
.seo-content p:last-child {
    margin-bottom: 0;
}
.seo-content strong {
    color: #00ff66;
    font-weight: 600;
}

/* FAQ Accordion */
.faq-container {
    background: rgba(5, 10, 8, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-heading {
    font-family: var(--font-heading, 'Orbitron', sans-serif);
    color: #00ff66;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 8px;
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    background: rgba(10, 20, 15, 0.9);
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-btn:hover, .faq-btn[aria-expanded="true"] {
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
}

.faq-btn i {
    transition: transform 0.3s ease;
    color: #00ff66;
}

.faq-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    background: rgba(0, 0, 0, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}
