:root {
    --brand-color: #ff7700;
    --brand-dark: #663000;
    --volvo-silver: #c0c0c0;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --bg-dark: #050505;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow: hidden; /* Prevent scroll for full screen canvas */
    height: 100vh;
    width: 100vw;
    position: relative;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    pointer-events: none; /* Let clicks pass through to canvas if needed, but we have links so we need to re-enable on children */
}

.overlay > * {
    pointer-events: auto;
}

.brand-header {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.brand-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 119, 0, 0.8);
}

.brand-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--volvo-silver);
    margin-top: 0.5rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.status-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 2rem 0;
}

.contact-preview h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--volvo-silver);
}

.contact-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--brand-color); /* Orange */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 119, 0, 0.3); /* Orange border */
    padding: 0.8rem 2rem;
    border-radius: 50px;
    min-width: 250px; /* Ensure buttons have consistent width */
}

.contact-link:hover {
    background: rgba(255, 119, 0, 0.1); /* Orange bg */
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.4); /* Orange glow */
    transform: translateY(-2px);
}

.site-footer {
    margin-top: auto;
    padding-bottom: 1rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    animation: fadeIn 1.5s ease-out 1s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }
    .brand-subtitle {
        font-size: 1.2rem;
    }
    .content-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    .contact-link {
        width: 100%;
        min-width: 0;
    }
}
