body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: #fff;
    overflow: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for readability */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    width: 600px;
}

h1 {
    font-family: 'Rye', serif;
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #f4e4bc;
    /* Warm earthy tone */
}

h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
}

.divider {
    height: 2px;
    width: 100px;
    background: #f4e4bc;
    margin: 20px auto;
}

.status {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtext {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .content {
        padding: 2rem;
        width: 85%;
    }
}