/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(5, 20, 10, 0.85), rgba(5, 20, 10, 0.85)), 
                url('background.jpg') center / cover no-repeat;
    color: #fff;
    padding: 20px 10px;
}

/* --- CARD CONTAINER (HIJAU GLASSMORPHISM) --- */
.card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.25) 0%, rgba(6, 78, 59, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(52, 211, 153, 0.4);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                0 0 20px rgba(16, 185, 129, 0.3);
    text-align: center;
    position: relative;
}

/* --- TITLE & LIST BENEFIT --- */
h1 {
    color: #fbbf24; /* Warna Emas */
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits {
    list-style: none;
    margin-bottom: 15px;
    text-align: center;
}

.benefits li {
    font-size: 11px;
    color: #e5e7eb;
    margin-bottom: 5px;
    line-height: 1.3;
}

.benefits li::before {
    content: '✓ ';
    color: #fbbf24;
    font-weight: bold;
}

/* --- EVENT BANNER --- */
.event-banner {
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.6), rgba(16, 185, 129, 0.6));
    border: 1px solid rgba(52, 211, 153, 0.5);
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- TRUST BOX --- */
.trust-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed rgba(52, 211, 153, 0.4);
    border-radius: 10px;
    padding: 10px;
    font-size: 11px;
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* --- STATS BOXES --- */
.stats {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.stat {
    flex: 1;
    background: rgba(6, 78, 59, 0.5);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    padding: 12px 5px;
}

.stat span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #34d399; /* Hijau Terang */
}

.stat label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2px;
    display: block;
}

/* --- LIVE INFO --- */
.live-info {
    font-size: 11px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.live-info p {
    margin: 3px 0;
}

.highlight-text {
    color: #fbbf24;
}

/* --- BUTTONS & BADGES --- */
.btn-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.btn-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-grid .btn-wrapper {
    flex: 1;
    margin-bottom: 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1.5px solid #fbbf24;
    border-radius: 10px;
    color: #fbbf24;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn:hover {
    background: #fbbf24;
    color: #000;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ef4444; /* Merah Badge Hot/Live */
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* --- FOOTER --- */
.footer {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}