/* ==========================================================================
   HOPENGTOTO - DESIGN SYSTEM & STYLING TOKENS
   Theme: Dark Luxury & Glassmorphism Cyber-Gold
   ========================================================================== */

:root {
    /* Colors - Dark Luxury Backgrounds */
    --bg-primary: #080a0f;
    --bg-secondary: #0e121c;
    --bg-tertiary: #151b29;
    
    /* Colors - Glassmorphism & Cards */
    --glass-bg: linear-gradient(145deg, rgba(140, 0, 0, 0.45) 0%, rgba(80, 0, 0, 0.6) 100%);
    --glass-border: rgba(255, 100, 100, 0.3);
    --glass-border-cyan: rgba(0, 243, 255, 0.22);
    --glass-border-purple: rgba(176, 38, 255, 0.25);
    
    /* Colors - Accents & Gradients */
    --gold-primary: #ffd700;
    --gold-light: #ffe866;
    --gold-dark: #c59b27;
    --gold-gradient: linear-gradient(135deg, #ffe866 0%, #ffd700 50%, #d4af37 100%);
    
    --cyan-primary: #00f3ff;
    --cyan-gradient: linear-gradient(135deg, #66f8ff 0%, #00f3ff 50%, #00a8b3 100%);
    
    --purple-primary: #b026ff;
    --purple-gradient: linear-gradient(135deg, #d366ff 0%, #b026ff 50%, #7600c2 100%);
    
    --green-primary: #00ff88;
    --green-gradient: linear-gradient(135deg, #66ffb3 0%, #00ff88 50%, #00b35f 100%);
    
    --red-primary: #ff3366;
    
    /* Colors - Typography */
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --text-dark: #0a0e17;
    
    /* Shadows & Glows */
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.4);
    --glow-cyan: 0 0 25px rgba(0, 243, 255, 0.4);
    --glow-purple: 0 0 25px rgba(176, 38, 255, 0.4);
    --glow-green: 0 0 25px rgba(0, 255, 136, 0.4);
    --shadow-card: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: radial-gradient(circle at 85% 15%, rgba(120, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.08) 45%, #080a0f 85%);
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 90px; /* Space for floating action bar */
}

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

ul {
    list-style: none;
}

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

/* Lazy Loading Placeholder & Transition */
img[data-src] {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

img.lazy-loaded {
    opacity: 1;
}

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

/* ==========================================================================
   UTILITY CLASSES & EFFECTS
   ========================================================================== */
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.cyan-gradient {
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
}

.text-green { color: var(--green-primary); font-weight: bold; }
.text-gold { color: var(--gold-primary); font-weight: bold; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Glassmorphism Panel Base */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), var(--glow-gold);
}

/* Background Glowing Orbs */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.7;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: 15%;
    width: 550px;
    height: 550px;
    background: rgba(140, 0, 0, 0.8);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.5);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 60%;
    width: 500px;
    height: 500px;
    background: rgba(110, 0, 0, 0.75);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.15); }
    100% { transform: translate(60px, -40px) scale(0.9); }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, #101522 0%, #1a2236 50%, #101522 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
}

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

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--green-primary);
    animation: pulseDot 1.5s infinite;
}

.ping-ms {
    color: var(--green-primary);
    font-weight: 600;
}

.bar-ticker {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-text {
    display: inline-block;
    color: var(--gold-light);
    font-weight: 500;
    animation: tickerScroll 25s linear infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 15px var(--green-primary); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

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

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(90, 0, 0, 0.95) 0%, rgba(55, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1;
    height: 50px;
}

.logo-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.1;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    animation: spinSlow 10s linear infinite;
}

.vip-badge {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: inline-block;
    margin-left: 2px;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--gold-primary);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-login {
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-primary);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.btn-login:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Hero CTA Buttons */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 35px 0 50px;
}

.btn-primary-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary-cyan {
    background: rgba(0, 243, 255, 0.12);
    color: var(--cyan-primary);
    border: 1px solid var(--cyan-primary);
    padding: 16px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.btn-secondary-cyan:hover {
    background: rgba(0, 243, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--glow-cyan);
}

.btn-outline-purple {
    background: rgba(176, 38, 255, 0.1);
    color: #df99ff;
    border: 1px solid var(--purple-primary);
    padding: 16px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.btn-outline-purple:hover {
    background: rgba(176, 38, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--glow-purple);
    color: #fff;
}

.btn-icon {
    font-size: 1.6rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
}

.btn-desc {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* ==========================================================================
   HERO SECTION (PRODUCT SHOWCASE 2-COLUMN LAYOUT)
   ========================================================================== */
.hero-section {
    padding: 50px 0 60px;
    position: relative;
    text-align: left;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
    align-items: flex-start;
}

/* Left Column: Gallery & Showcase Box */
.product-gallery-col {
    display: flex;
    gap: 15px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    background: #0c101a;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumb-item:hover .thumb-img {
    transform: scale(1.1);
}

.gallery-main-box {
    flex: 1;
    background: #0c101a;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 540px;
    min-height: 480px;
}

.main-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    transition: transform 0.5s ease;
}

.gallery-main-box:hover .main-banner-img {
    transform: scale(1.03);
}

/* Right Column: Product Info & Options */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
}

.price-status {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.gold-text {
    color: var(--gold-primary);
}

.product-action-row {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.btn-product-register, .btn-product-login {
    flex: 1;
    padding: 16px 24px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-product-register {
    background: var(--gold-gradient);
    color: var(--text-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-product-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.btn-product-login {
    background: linear-gradient(145deg, #ffd700 0%, #d4af37 100%);
    color: var(--text-dark) !important;
    border: 1px solid rgba(255, 215, 0, 0.6);
    opacity: 0.95;
}

.btn-product-login:hover {
    transform: translateY(-3px);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.product-option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.option-sub {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.option-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-grid {
    grid-template-columns: repeat(4, 1fr);
}

.tag-pill {
    background: rgba(20, 25, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-pill:hover, .tag-pill.active {
    border-color: var(--gold-primary);
    color: #fff;
    background: rgba(35, 28, 14, 0.8);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.gold-pill {
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--gold-primary);
}

.product-stats-row {
    display: flex;
    justify-content: space-between;
    background: rgba(20, 25, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    margin-top: 10px;
}

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

.p-stat strong {
    color: #fff;
    font-weight: 700;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
    padding: 80px 0;
}

.live-result-section {
    padding-bottom: 25px !important;
}

.features-section {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.seo-content-section {
    padding-top: 25px !important;
}

.section-header {
    margin-bottom: 45px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-primary);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   LIVE RESULT & INTERACTIVE SIMULATOR
   ========================================================================== */
.live-widget-card {
    padding: 35px;
    background: linear-gradient(145deg, rgba(140, 0, 0, 0.55) 0%, rgba(80, 0, 0, 0.7) 100%);
    border: 2px solid rgba(255, 100, 100, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(180, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.live-widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 51, 102, 0.15);
    color: var(--red-primary);
    border: 1px solid var(--red-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.blink-circle {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.draw-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 55px;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.time-box small {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.time-colon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    animation: blink 1s infinite;
}

/* Number Balls Container */
.number-balls-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.number-ball {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b 70%, #5c4000 100%);
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 -8px 12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #0a0e17;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.number-ball:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Ball spinning animation triggered by JS */
.spinning {
    animation: ballSpin 0.15s infinite linear;
    filter: blur(2px);
    background: radial-gradient(circle at 30% 30%, #00f3ff, #008891 70%, #003337 100%);
    color: #fff;
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.8);
}

@keyframes ballSpin {
    0% { transform: translateY(-5px) rotate(0deg) scale(1.05); }
    50% { transform: translateY(5px) rotate(180deg) scale(0.95); }
    100% { transform: translateY(-5px) rotate(360deg) scale(1.05); }
}

.widget-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-action-spin {
    background: linear-gradient(135deg, #1f293d 0%, #111723 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-action-spin:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-link-result {
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
}

/* Schedule Table */
.table-container {
    padding: 30px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.table-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.date-badge {
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.table-responsive {
    overflow-x: auto;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.result-table th {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.result-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.result-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.row-highlight {
    background: rgba(255, 215, 0, 0.06);
    border-left: 4px solid var(--gold-primary);
}

.badge-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-done { background: rgba(0, 255, 136, 0.15); color: var(--green-primary); }
.badge-live { background: rgba(255, 51, 102, 0.2); color: var(--red-primary); animation: pulseDot 1.5s infinite; }
.badge-next { background: rgba(255, 255, 255, 0.08); color: var(--text-muted); }

.result-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.glow-num {
    color: var(--gold-primary);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.btn-mini {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-mini:hover {
    background: rgba(0, 243, 255, 0.2);
    color: var(--cyan-primary);
}

.btn-mini-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.btn-mini-gold:hover {
    box-shadow: var(--glow-gold);
    color: var(--text-dark);
}

/* ==========================================================================
   RTP & ANALYTICS SECTION
   ========================================================================== */
.rtp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rtp-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rtp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.game-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.rtp-percentage {
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.progress-bar-bg {
    width: 100%;
    height: 14px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 8px;
    position: relative;
    background-size: 20px 20px;
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    animation: moveStripes 2s linear infinite;
}

.fill-green { background-color: var(--green-primary); box-shadow: 0 0 15px var(--green-primary); }
.fill-gold { background-color: var(--gold-primary); box-shadow: 0 0 15px var(--gold-primary); }

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.rtp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.status-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
}

.tag-hot { background: rgba(255, 51, 102, 0.2); color: var(--red-primary); }
.tag-warm { background: rgba(255, 215, 0, 0.2); color: var(--gold-primary); }

/* Hot & Cold Card */
.hot-cold-card {
    padding: 25px;
}

.hc-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.hc-balls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hc-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.hc-ball.hot {
    background: linear-gradient(135deg, #ff3366, #b8002f);
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.5);
}

.hc-ball.cold {
    background: linear-gradient(135deg, #00f3ff, #0077b8);
    color: #000;
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.f-icon {
    font-size: 2.2rem;
}

.gold-glow:hover { box-shadow: var(--glow-gold); border-color: var(--gold-primary); }
.cyan-glow:hover { box-shadow: var(--glow-cyan); border-color: var(--cyan-primary); }
.purple-glow:hover { box-shadow: var(--glow-purple); border-color: var(--purple-primary); }
.green-glow:hover { box-shadow: var(--glow-green); border-color: var(--green-primary); }

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEO COPYWRITING ARTICLE SECTION
   ========================================================================== */
.seo-article {
    padding: 45px;
    line-height: 1.8;
}

.seo-article h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.seo-article h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 30px 0 15px;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.seo-article strong {
    color: #fff;
}

.seo-link {
    color: var(--cyan-primary);
    text-decoration: underline;
    font-weight: 600;
}

.seo-cta-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--gold-primary);
    padding: 30px;
    border-radius: 16px;
}

.seo-cta-box h3 {
    margin: 0 0 10px;
    color: #fff;
}

.final-cta-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* ==========================================================================
   INTERACTIVE FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    transition: var(--transition-smooth);
    background: linear-gradient(145deg, rgba(140, 0, 0, 0.45) 0%, rgba(80, 0, 0, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(150, 0, 0, 0.25);
}

.faq-item:hover {
    border-color: rgba(255, 150, 150, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(160, 0, 0, 0.55) 0%, rgba(90, 0, 0, 0.7) 100%);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 22px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(255, 150, 150, 0.8);
    background: linear-gradient(145deg, rgba(170, 0, 0, 0.65) 0%, rgba(100, 0, 0, 0.8) 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(220, 0, 0, 0.5);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-primary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #4a0000 0%, #600000 50%, #300000 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    padding: 70px 0 40px;
    margin-top: 50px;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.8);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-brand .brand-logo {
    display: inline-flex;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    max-width: 380px;
    text-align: left;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-tags span {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    margin-right: 5px;
}

.tag-link {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    border-color: rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

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

.security-badge {
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.75rem;
}

/* ==========================================================================
   FLOATING ACTION BAR (STICKY BOTTOM)
   ========================================================================== */
.floating-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.fab-container {
    background: linear-gradient(135deg, rgba(90, 0, 0, 0.98) 0%, rgba(45, 0, 0, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(128, 0, 0, 0.6);
}

.fab-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(145deg, #700000 0%, #400000 100%);
    color: #ffffff !important;
    border: 2px solid #ffffff;
    border-radius: 30px;
    transition: var(--transition-fast);
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.fab-icon, .fab-img-icon {
    font-size: 1.4rem;
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.fab-item:hover .fab-img-icon {
    transform: scale(1.1);
}

.fab-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fab-item:hover {
    background: #ffffff;
    color: #700000 !important;
    border-color: #700000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
}

.fab-register {
    background: linear-gradient(145deg, #700000 0%, #400000 100%);
    color: #ffffff !important;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.fab-register:hover {
    background: #ffffff;
    color: #700000 !important;
    border-color: #700000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.pulse-glow {
    animation: pulseDot 1.5s infinite;
}

/* ==========================================================================
   BRAND LOGO IMAGE
   ========================================================================== */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    transition: var(--transition-fast);
    display: block;
    flex-shrink: 0;
}

.brand-logo:hover .logo-img {
    transform: scale(1.08) rotate(6deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

/* ==========================================================================
   TESTIMONIAL SECTION (BUKTI NYATA PEMAIN)
   ========================================================================== */
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimoni-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(140, 0, 0, 0.45) 0%, rgba(80, 0, 0, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(150, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.testimoni-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 150, 150, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(170, 0, 0, 0.6) 0%, rgba(100, 0, 0, 0.75) 100%);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.8;
    color: rgba(255, 215, 0, 0.35);
    margin-bottom: 15px;
    font-weight: 900;
}

.testimoni-text {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: normal;
}

.testimoni-author {
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 15px;
}

.author-name {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-device {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PROMO BANNER POPUP MODAL
   ========================================================================== */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-modal-box {
    background: #0d0000;
    border: 2px solid #ff0044;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(255, 0, 68, 0.7), 0 20px 60px rgba(0, 0, 0, 0.9);
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.promo-modal-overlay.show .promo-modal-box {
    transform: scale(1) translateY(0);
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.promo-close-btn:hover {
    background: #ff0044;
    transform: scale(1.1) rotate(90deg);
}

.promo-banner-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid rgba(255, 0, 68, 0.4);
    transition: transform 0.5s ease;
}

.promo-banner-link:hover .promo-banner-img {
    transform: scale(1.02);
}

.promo-modal-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(180deg, #1a0005 0%, #0d0000 100%);
}

.promo-btn-daftar, .promo-btn-login {
    flex: 1;
    padding: 14px 20px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
    background: linear-gradient(135deg, #ff1a53 0%, #ff809a 50%, #d9e6ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(255, 0, 68, 0.5);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.promo-btn-daftar:hover, .promo-btn-login:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 0, 68, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #ff809a 50%, #ff1a53 100%);
}

/* ==========================================================================
   FALLING GOLD COINS & SNOW EFFECTS
   ========================================================================== */
.falling-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.falling-particle {
    position: absolute;
    top: -50px;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
}

.particle-coin {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    animation: fallCoin linear infinite, spinCoin 3s ease-in-out infinite alternate;
}

.particle-snow {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #ffd700 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ffffff;
    animation: fallSnow linear infinite, swaySnow 3s ease-in-out infinite alternate;
}

@keyframes fallCoin {
    0% {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(105vh) scale(1.1);
        opacity: 0;
    }
}

@keyframes spinCoin {
    0% {
        transform: rotate3d(0, 1, 0, 0deg) rotate(0deg);
    }
    50% {
        transform: rotate3d(0, 1, 0, 180deg) rotate(18deg);
    }
    100% {
        transform: rotate3d(0, 1, 0, 360deg) rotate(-18deg);
    }
}

@keyframes fallSnow {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(105vh);
        opacity: 0;
    }
}

@keyframes swaySnow {
    0% {
        margin-left: -30px;
    }
    100% {
        margin-left: 30px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .product-showcase-grid { grid-template-columns: 1fr; gap: 35px; }
    .gallery-main-box { min-height: 380px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rtp-grid { grid-template-columns: 1fr; }
    .testimoni-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile Menu Hamburger Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(8, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px;
        gap: 12px;
        width: 100%;
        z-index: 999;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-login, .btn-register {
        width: 100%;
        text-align: center;
    }
    
    .navbar-container { gap: 15px; }
    .nav-links { gap: 16px; font-size: 0.85rem; }
    .product-title { font-size: 1.6rem; }
    .price-amount { font-size: 1.8rem; }
    .product-action-row { flex-direction: column; }
    .option-tags-grid { grid-template-columns: repeat(2, 1fr); }
    .size-grid { grid-template-columns: repeat(2, 1fr); }
    .product-stats-row { flex-wrap: wrap; gap: 10px; justify-content: space-around; }
    .product-gallery-col { flex-direction: column-reverse; }
    .gallery-thumbnails { flex-direction: row; justify-content: center; }
    
    .cta-group { flex-direction: column; width: 100%; max-width: 350px; margin: 30px auto; }
    .btn { width: 100%; }
    
    .widget-header { flex-direction: column; text-align: center; }
    .countdown-timer { align-items: center; margin-top: 15px; }
    .number-ball { width: 70px; height: 70px; font-size: 2.2rem; }
    .number-balls-container { gap: 15px; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .live-result-section { padding-bottom: 15px !important; }
    .features-section { padding-top: 15px !important; padding-bottom: 15px !important; }
    .seo-content-section { padding-top: 15px !important; }
    .testimoni-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { align-items: flex-start; text-align: left; }
    .footer-brand .brand-logo { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .floating-action-bar { width: 100%; bottom: 0; left: 0; transform: none; }
    .fab-container { padding: 8px 10px; gap: 6px; border-radius: 0; border-width: 1.5px 0 0 0; width: 100%; }
    .fab-item { flex-direction: column; gap: 3px; padding: 8px 6px; border-radius: 20px; border-width: 1.5px; }
    .fab-icon, .fab-img-icon { font-size: 1.25rem; height: 20px; width: auto; }
    .fab-label { font-size: 0.7rem; }
    .fab-register { padding: 8px 14px; border-radius: 25px; border-width: 1.5px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .number-ball { width: 60px; height: 60px; font-size: 1.8rem; }
    .bar-content { flex-direction: column; text-align: center; gap: 4px; }
    .promo-modal-box { max-width: 95%; border-radius: 18px; }
    .promo-modal-actions { padding: 15px; gap: 10px; }
    .promo-btn-daftar, .promo-btn-login { padding: 12px 10px; font-size: 0.95rem; }
}
