:root {
    --sm-blue: #0056b3;
    --sm-dark: #333333;
    --sm-gray: #777777;
    --bg-gradient: #f4f7f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    max-width: 550px;
    width: 100%;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

.badge {
    display: inline-block;
    background: #e7f1ff;
    color: var(--sm-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    color: var(--sm-dark);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    color: var(--sm-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Progress Bar Animasi */
.loader-section {
    text-align: center;
}

.progress-bar {
    background: #edf2f7;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    background: linear-gradient(90deg, #0056b3, #00aaff);
    height: 100%;
    width: 85%;
    border-radius: 10px;
    animation: pulse 2s infinite ease-in-out;
}

.status-text {
    font-size: 0.85rem;
    color: var(--sm-blue);
    font-weight: 600;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.footer {
    margin-top: 40px;
    color: var(--sm-gray);
    font-size: 0.85rem;
}

.footer strong {
    color: var(--sm-blue);
}
