/* --- MOBILE BLOCK STYLES (Should load after style-western.css) --- */

body.mobile-blocked-body {
    /* Ensure the body maintains its background and height */
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh;
}

.block-container {
    /* Centers the error message on the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    /* Ensure the main site header/footer are gone */
    margin: 0; 
}

.access-denied-box {
    max-width: 90%;
    text-align: center;
    padding: 30px;
    /* Red warning glow for the access denied box */
    border: 3px double #d44; 
    background-color: rgba(0, 0, 0, 0.85); 
    color: #d2c8b8;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2); 
}

.error-code {
    font-family: 'Baksheesh', serif;
    color: #ffffff;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.error-message {
    line-height: 1.6;
    margin-bottom: 15px;
}

.system-status {
    margin-top: 30px;
    font-family: monospace;
    color: #ffb380; /* Amber text */
    border-top: 1px dashed #5a4a3a;
    padding-top: 15px;
}

.blink {
    animation: blinker 1s steps(1, end) infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}