/* Restriction Page Styles - Fallback */

/* Ensure consistent styling even if main styles fail to load */
.restriction-fallback {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #181a20;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.restriction-fallback h1 {
    color: #fcd535;
    margin-bottom: 20px;
    font-size: 2rem;
}

.restriction-fallback p {
    color: #e1e5e9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.restriction-fallback a {
    background: #fcd535;
    color: #181a20;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 10px;
    transition: transform 0.3s ease;
}

.restriction-fallback a:hover {
    transform: translateY(-2px);
}

/* Loading spinner for async loading */
.vm-restriction-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #181a20;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.vm-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(252, 213, 53, 0.3);
    border-top: 4px solid #fcd535;
    border-radius: 50%;
    animation: vm-spin 1s linear infinite;
}

@keyframes vm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}