body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #f8f9fa;
    text-align: center;
    background-color: #121212;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-radial-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.4), transparent 50%),
                radial-gradient(circle at bottom right, rgba(251, 113, 133, 0.4), transparent 50%),
                radial-gradient(circle at center, rgba(168, 85, 247, 0.2), transparent 50%);
    opacity: 0.8;
    animation: pulseGlow 15s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.container {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    padding: 40px;
    z-index: 10;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Header ---- */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.site-status i {
    color: #ef4444;
    text-shadow: 0 0 15px #ef4444;
}

/* ---- Main Content ---- */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warning-icon-container {
    display: inline-block;
    padding: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: flash 1s infinite alternate;
}

.warning-icon {
    color: #fff;
    font-size: 4rem;
}

@keyframes flash {
    from { box-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444; }
    to { box-shadow: 0 0 20px #ef4444, 0 0 40px #ef4444; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 5px 0;
    color: #d1d5db;
}

b {
    color: #fff;
    font-weight: 600;
}

.reason-card {
    background-color: rgba(249, 249, 249, 0.1);
    border-left: 4px solid #ff4d4d;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border-radius: 8px;
    width: 100%;
}

.reason-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reason-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ff4d4d;
    font-weight: 500;
}

.reason-header i {
    color: #ff4d4d;
}

.reason-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
}

.call-to-action {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #ff4d4d;
    color: #fff;
    border: 2px solid #ff4d4d;
}

.btn-primary:hover {
    background-color: #e63939;
    border-color: #e63939;
}

.btn-secondary {
    background-color: transparent;
    color: #666;
    border: 2px solid #ccc;
}

.btn-secondary:hover {
    color: #333;
    border-color: #aaa;
}
.small-text {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #9ca3af; 
}
.divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 9px auto 20px;
}
/* ---- Footer ---- */
.footer {
    width: 100%;
    margin-top: 10px;
    /* padding-top: 20px; */
}

.footer p {
    font-size: 0.8rem;
    color: #6b7280;
}

@media (max-width: 600px) {
    .container {
        max-width: 90%;
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .call-to-action {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }
}