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

body {
    /* Background hitam elegan, bukan hitam pekat tapi dark charcoal */
    background-color: #0a0a0a; 
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.container {
    padding: 50px;
    max-width: 650px;
    width: 90%;
    /* Menghilangkan kotak tegas, menggantinya dengan efek menyatu dengan background */
    background: transparent;
}

/* ========================================== */
/* ANIMASI BOLA EMAS MELOMPAT (ELEGAN)        */
/* ========================================== */
.bouncing-balls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    height: 50px; 
}

.ball {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    /* Gradasi warna emas mewah */
    background: linear-gradient(135deg, #F3E7E9 0%, #D5C18F 50%, #B89947 100%);
    box-shadow: 0 4px 15px rgba(184, 153, 71, 0.4);
    animation: bounce-elegant 0.8s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

/* Delay yang teratur agar lompatan terlihat bergelombang mulus */
.ball:nth-child(1) { animation-delay: 0s; }
.ball:nth-child(2) { animation-delay: 0.15s; }
.ball:nth-child(3) { animation-delay: 0.3s; }
.ball:nth-child(4) { animation-delay: 0.45s; }

@keyframes bounce-elegant {
    0% { transform: translateY(15px); opacity: 0.6; }
    100% { transform: translateY(-15px); opacity: 1; }
}

/* ========================================== */
/* TYPOGRAPHY MEWAH                           */
/* ========================================== */
h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 4px; /* Spasi huruf lebar ciri khas brand mewah */
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Efek teks emas */
    background: linear-gradient(to right, #D5C18F, #FFF8D6, #D5C18F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 10px rgba(213, 193, 143, 0.1);
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.countdown-text {
    font-weight: 600;
    color: #D5C18F; /* Warna emas */
}

/* ========================================== */
/* TOMBOL ELEGAN                              */
/* ========================================== */
.manual-link {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #D5C18F;
    text-decoration: none;
    border: 1px solid #D5C18F;
    border-radius: 2px; /* Sudut tajam/sedikit melengkung lebih terlihat profesional dibanding bulat penuh */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

.manual-link:hover {
    background: linear-gradient(135deg, #D5C18F 0%, #B89947 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(184, 153, 71, 0.2);
    transform: translateY(-3px);
}
