/* SUB ROSA Suspension Page - Muted Dark Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Muted versions of original colors for dark theme */
    --color-primary-muted: #7a6850;
    --color-secondary-muted: #6a4550;
    --color-tertiary-muted: #3a4f5f;
    --color-quartery-muted: #7a5545;
    --color-background-dark: #1a1a1a;
    --color-text-light: #c0c0c0;
    --color-text-dim: #808080;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-caption {
    max-width: 300px;
    width: 100%;
    height: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.logo-svg {
    width: 200px;
    height: auto;
    opacity: 0.7;
}

.logo-shape {
    opacity: 0.8;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.message-box {
    text-align: center;
    max-width: 600px;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.message-box h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

.notice {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-text-dim);
}

.notice:last-of-type {
    margin-bottom: 0;
}

/* Language switcher */
.lang-switch {
    margin-top: 2rem;
}

.lang-link {
    color: var(--color-tertiary-muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-tertiary-muted);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.lang-link:hover {
    background-color: var(--color-tertiary-muted);
    color: var(--color-background-dark);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 2rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-text-light);
}

.separator {
    color: var(--color-text-dim);
    margin: 0 0.75rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo-caption {
        max-width: 250px;
    }

    .logo-svg {
        width: 150px;
    }

    .message-box {
        padding: 2rem 1.5rem;
    }

    .message-box h1 {
        font-size: 1.5rem;
    }

    .notice {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-caption {
        max-width: 200px;
    }

    .logo-svg {
        width: 120px;
    }

    .message-box h1 {
        font-size: 1.25rem;
    }
}
