#orientation-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200000; 
    background: rgba(0,0,0,0.6);
}

#orientation-overlay .orientation-blur-bg {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
}

#orientation-overlay .orientation-message {
    position: relative;
    z-index: 1;
    color: #fffbe7;
    font-size: clamp(20px, 6vw, 42px);
    font-family: 'Comic Relief', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 20px #000, 0 0 40px #f0b353;
    padding: 0.6em 1em;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
}

@media (min-width: 481px) {
    #orientation-overlay { display: none; }
}
