:root {
    --color-gold: #C5A059;
    --color-dark: #05162B;
    --color-text: #EAEAEA;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-dark);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 22, 43, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-svg {
    width: 60px;
    height: 60px;
    animation: pulse 3s infinite ease-in-out;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.separator {
    width: 100px;
    height: 2px;
    background: var(--color-gold);
    margin: 20px auto;
    position: relative;
}

.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: rotate(45deg);
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 40px;
    min-height: 1.5em;
    /* Prevent layout shift */
}

.status-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.status-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    min-width: 140px;
}

.status-label {
    display: block;
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.status-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.status-value.active {
    color: #4CAF50;
}

.status-value.warning {
    color: #FFC107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.notify-form {
    margin-bottom: 40px;
}

.notify-form p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.notify-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.notify-form input:focus {
    border-color: var(--color-gold);
}

.notify-form button {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 12px 24px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.notify-form button:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

footer {
    opacity: 0.5;
    font-size: 0.8rem;
    margin-top: auto;
}

.footer-seal {
    width: 40px;
    margin-bottom: 10px;
    filter: sepia(100%) hue-rotate(10deg) saturate(90%) contrast(90%);
    /* Make it look golden/aged */
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1.0s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .main-title {
        font-size: 2rem;
    }

    .status-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .status-item {
        width: 100%;
        max-width: 300px;
    }
}