/* Temporary hiding styles for protection */
.temp-hidden {
    display: none !important;
}

.temp-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0f0f1e;
    color: #4A90E2;
    font-family: Arial, sans-serif;
}

.temp-notice-content {
    text-align: center;
}

.temp-notice h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.temp-notice p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.temp-notice a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

.temp-notice a:hover {
    background: #357ABD;
}