* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold-primary: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8860B;
            --gold-shine: #FFD700;
            --bg-dark: #0a0a0a;
            --bg-card: rgba(20, 20, 20, 0.85);
            --bg-glass: rgba(212, 175, 55, 0.08);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --border-gold: rgba(212, 175, 55, 0.3);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(244, 208, 63, 0.05) 0%, transparent 70%),
                linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold-primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* Header */
        .header {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-gold);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

/* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* LOGO IMAGE */
.logo-img {
    width: 120px;   /* Default mobile */
    height: auto;
    object-fit: contain;
}

/* DESKTOP SIZE */
@media (min-width: 1024px) {
    .logo-img {
        width: 200px;
    }
}

/* OPTIONAL: Jika masih pakai logo huruf/icon */
.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

        .datetime-widget {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1px;
            margin-left: 90px;
        }

        .live-time {
            font-size: 14px;
            font-weight: 600;
            color: var(--gold-primary);
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .live-date {
            font-size: 10px;
            color: var(--text-secondary);
            letter-spacing: 1px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 1px;
            font-size: 9px;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
            box-shadow: 0 0 10px #00ff88;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            position: relative;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px 30px;
            background: var(--bg-glass);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            min-width: 150px;
        }

        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--gold-primary);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 5px;
        }
        .join-btn-container {
    margin-top: 30px;
}

.join-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(139,117,0,0.8), rgba(184,134,11,0.8), rgba(255,215,0,0.9));
    background-size: 300% 300%;
    animation: gradientMove 3s linear infinite;
    box-shadow: 0 0 15px rgba(184,134,11,0.7), 0 0 30px rgba(255,215,0,0.5);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* Efek berkilau dengan gradient bergerak */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efek klik tombol */
.join-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 25px rgba(255,215,0,0.9), 0 0 40px rgba(184,134,11,0.8);
}

        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--gold-primary);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Testimonial Grid */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--gold-dark));
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold-primary);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(212, 175, 55, 0.1);
        }

        .card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-gold);
            background: #111;
        }

        .card-content {
            padding: 25px;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .card-username {
            font-weight: 600;
            font-size: 18px;
            color: var(--gold-primary);
        }

        .card-amount {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            color: var(--bg-dark);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 14px;
        }

        .card-game {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-game::before {
            content: '🎰';
        }

        .card-comment {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 15px;
            font-style: italic;
            opacity: 0.9;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-gold);
        }

        .card-date {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .card-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #00ff88;
            font-weight: 500;
        }

        .card-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
        }

        .card-bank {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 12px;
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .card-bank-icon {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-bank-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--gold-primary);
        }

        .card-info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        /* Loading State */
        .loading {
            text-align: center;
            padding: 60px 20px;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--border-gold);
            border-top-color: var(--gold-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Footer */
        .footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid var(--border-gold);
            padding: 30px 20px;
            text-align: center;
        }

        .footer p {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .footer .highlight {
            color: var(--gold-primary);
            font-weight: 600;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content {
                justify-content: center;
                text-align: center;
            }

            .datetime-widget {
                align-items: right;
            }

            .logo-text {
                font-size: 10px;
            }

            .live-time {
                font-size: 12px;
            }

            .stats {
                gap: 15px;
            }

            .stat-item {
                min-width: 120px;
                padding: 15px 20px;
            }

            .stat-value {
                font-size: 28px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .logo-text {
                font-size: 20px;
            }

            .stat-item {
                min-width: 100px;
                padding: 12px 15px;
            }

            .stat-value {
                font-size: 24px;
            }

            .card-content {
                padding: 20px;
            }
        }

        /* Error State */
        .error-comment {
            text-align: center;
            padding: 40px 20px;
            color: #ff6b6b;
        }

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Ubah dari right ke left */
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top.visible {
    display: flex;
}
       /* Modal overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* Modal content (image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    animation: zoomIn 0.3s ease;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFD700;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
}
  .pagination {
    margin-top: 20px;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;           /* jarak antar elemen */
  }

  .page-btn {
    padding: 10px 10px;
    min-width: 110px;     /* agar tombol ga terlalu kecil di mobile */
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    touch-action: manipulation; /* lebih enak di sentuh mobile */
  }

  .page-btn:hover,
  .page-btn:focus {
    background: var(--gold-primary);
    color: #0a0a0a;
    outline: none;
  }

  .page-info {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
  }

  /* ── Mode mobile ── */
  @media (max-width: 560px) {
    .pagination {
      flex-direction: column;
      gap: 5px;
      padding: 10px 12px;
      margin-top: 10px;
    }

    .page-btn {
      padding: 12px 18px;
      min-width: 140px;     /* tombol lebih lebar & mudah diklik */
      font-size: 1.05rem;
    }

    .page-info {
      font-size: 1.05rem;
      margin: 8px 0;
    }
  }

  /* Opsional: kalau layar sangat kecil (contoh < 360px) */
  @media (max-width: 380px) {
    .page-btn {
      min-width: 120px;
      padding: 10px 10px;
      font-size: 0.98rem;
    }
  }

  /* ────────────────────────────────────────────────
   FEATURES GRID, FINAL CTA & DISCLAIMER STYLING
   ──────────────────────────────────────────────── */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Gold shine border on top */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
    opacity: 0.7;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(212, 175, 55, 0.15);
}

/* Icon styling */
.feature-icon {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    color: var(--gold-primary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    text-shadow: 0 0 25px rgba(244, 208, 63, 0.7);
}

/* Text inside feature */
.feature-item h3 {
    font-size: 1.45rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.4);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    margin: 4rem 1rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.05));
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.final-cta h3 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--gold-shine);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Larger join button variant */
.join-btn.large {
    padding: 1.2rem 3rem;
    font-size: 1.25rem;
    min-width: 280px;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    margin: 3rem 1rem 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.disclaimer small {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.8rem 1.2rem;
    }

    .feature-icon {
        font-size: 3.2rem;
    }

    .final-cta {
        padding: 2.5rem 1.5rem;
        margin: 3rem 0.5rem;
    }

    .join-btn.large {
        padding: 1rem 2.5rem;
        font-size: 1.15rem;
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .final-cta h3 {
        font-size: 1.5rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .disclaimer {
        font-size: 0.85rem;
        padding: 1.2rem 1rem;
    }
}