:root {
    --primary-orange: #F58634;
    --dark-blue: #3A405A;
    --text-color: #555;
    --highlight-red: #D9534F;
    --background-dark: #333333;
    --background-light: #FEF8F2;
    --white: #FFFFFF;
}

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

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

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

/* --- Header & Logo --- */
.header-section {
    text-align: center;
    color: var(--white);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
//.logo-home { color: var(--primary-orange); }
.logo-by {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    margin: 0 5px;
}
.logo-ljn {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4B90D6;
    background: linear-gradient(90deg, #4B90D6, #2969B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-title {
    font-size: 4rem;
    color: var(--primary-orange);
    letter-spacing: 5px;
    font-weight: 700;
}


.illustration-wrapper {
    position: relative;
    width: 450px;
    height: 250px;
    background-image: url('isolir.webp'); /* Gambar Desktop */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -20px; /* Sedikit tumpang tindih dengan judul */
}

.illustration-wrapper::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    //background-color: var(--primary-orange);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.8;
}

/* --- Message Card --- */
.message-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-card h2 {
    //font-size: .5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}



.message-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-red { color: var(--highlight-red); font-weight: 600; }
.highlight-orange { color: var(--primary-orange); font-weight: 600; }


/* --- Tombol --- */
.button-group {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #e07021;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}
.btn-secondary:hover {
    background-color: #fff5ed;
    transform: translateY(-2px);
}

/* =================================== */
/* ===         RESPONSIVE          === */
/* =================================== */

/* --- Tampilan Desktop --- */
@media (min-width: 769px) {
    body {
        background-color: var(--background-light);
        border: 25px solid #FEF8F2;
    }
    .header-section {
        color: var(--dark-blue); /* Ubah warna teks header di desktop */
    }
}


/* --- Tampilan Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .logo { font-size: 2rem; }
    .status-title { font-size: 3rem; }

    .illustration-wrapper {
        width: 100%;
        max-width: 300px;
        height: 200px;
        background-image: url('isolir-mobile.webp'); /* Ganti dengan Gambar Mobile */
    }

    .illustration-wrapper::before {
        width: 200px;
        height: 200px;
    }

    .message-card {
        padding: 25px 20px;
    }
    .message-card h2 { font-size: 1.5rem; }
    .message-card p { font-size: 0.9rem; }

    .button-group {
        flex-direction: column; /* Tombol jadi vertikal */
        align-items: stretch; /* Tombol jadi full-width */
    }

    .btn {
        justify-content: center;
    }
}