/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- MEMAKSA TAMPILAN TERANG (LIGHT MODE) --- */
:root {
    color-scheme: light;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Background Gradient Cerah */
    background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%) fixed; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: #333; /* Memastikan teks berwarna gelap/hitam */
}

/* Glassmorphism Card (Lebih Putih/Terang) */
.glass-card {
    background: #ffffff; /* Ubah jadi putih solid agar terang maksimal */
    /* Jika ingin tetap transparan sedikit, gunakan: rgba(255, 255, 255, 0.95); */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
}

/* --- LOGO & ANIMASI --- */
.hero-logo {
    max-height: 100px;
    margin-bottom: 20px;
    width: auto;
    /* Animasi Bergerak */
    animation: floating 3s ease-in-out infinite;
}

/* Keyframes untuk Animasi Naik Turun */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* Bergerak ke atas */
    100% { transform: translateY(0px); }
}

/* Countdown */
.countdown-box {
    background: #ff6b6b;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Status Text */
.status-lulus { color: #28a745; font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.status-gagal { color: #dc3545; font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
footer {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.8); /* Footer terang */
    color: #555;
    padding: 15px 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Tabel Hasil Default (Desktop) */
.table-data { width: 100%; }
.table-data tr th { width: 35%; text-align: left; vertical-align: top; padding: 8px 0; color: #555; }
.table-data tr td { width: 65%; text-align: left; vertical-align: top; padding: 8px 0; font-weight: 600; color: #000; }

/* --- RESPONSIVE MOBILE (Layar HP) --- */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .glass-card {
        margin-top: 20px; 
        padding: 20px;
        border-radius: 15px;
    }

    /* Ukuran Judul */
    h3 { font-size: 1.4rem; color: #333; }

    /* UKURAN LOGO DI HP (DIPERKECIL) */
    .hero-logo {
        max-height: 70px; /* Lebih kecil agar proporsional */
    }

    /* Input Form */
    .form-control {
        font-size: 16px; 
        padding: 12px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        color: #333;
    }
    
    .btn-lg { padding: 12px; font-size: 1rem; }

    /* Tabel Stacked (Label di atas isi) */
    .table-data tr { display: block; margin-bottom: 15px; border-bottom: 1px solid #eee; }
    .table-data tr:last-child { border-bottom: none; }
    .table-data tr th { display: block; width: 100%; font-size: 0.85rem; color: #777; margin-bottom: 2px; }
    .table-data tr td { display: block; width: 100%; font-weight: 700; font-size: 1.1rem; color: #000; padding-left: 0; }
}