/* --- BACKGROUND SOURCED FROM THE IMAGE --- */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #130f22 0%, #07050d 100%);
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 80%;
}

/* --- ANIMASI: Fade In Up --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

.top-text {
    color: #00ffff;
    font-size: 16px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.6s forwards; 
}

/* --- ANIMASI: Teks Utama --- */
@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes moveGradientAndPulse {
    0% { 
        background-position: 0% center; 
        filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.4));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 15px rgba(147, 112, 219, 0.7));
    }
    100% { 
        background-position: 200% center; 
        filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.4));
    }
}

.main-title {
    font-size: 7vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px 0;
    
    background-image: linear-gradient(
        to right,
        #ffffff 0%,
        #ff1493 25%,
        #9370db 50%,
        #ff1493 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    opacity: 0;
    animation: 
        zoomIn 1.4s cubic-bezier(0.1, 0.8, 0.2, 1) forwards,
        moveGradientAndPulse 7s linear infinite forwards; 
}

/* --- ANIMASI: Garis Pemisah --- */
@keyframes expandLine {
    0% { width: 0; opacity: 0; }
    100% { width: 250px; opacity: 1; }
}

.line-separator {
    height: 4px;
    background: linear-gradient(to right, #00ffff, #ff1493, #9370db);
    margin: 20px auto 25px auto;
    border-radius: 2px;
    width: 0;
    animation: expandLine 1.4s ease-out 1.2s forwards; 
}

/* --- STYLE BARU: COMING SOON (TEBAL) --- */
.coming-soon {
    font-size: 22px;
    font-weight: 900; /* Paling tebal */
    letter-spacing: 5px;
    color: #ffffff;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1.8s forwards; /* Muncul setelah garis meluas */
}

/* --- STYLE BARU: COPYRIGHT (TIPIS & SAMAR) --- */
.copyright {
    font-size: 15px;
    font-weight: 400; /* Sangat tipis */
    letter-spacing: 2px;
    /* Menggunakan rgba putih dengan opasitas 0.25 agar menghasilkan warna abu-abu transparan yang menyatu dengan background gelap */
    color: #F2F2F2; 
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2.2s forwards; /* Muncul paling akhir */
}
