/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #AA7C11 0%, #D4AF37 40%, #FFFDD0 60%, #D4AF37 80%, #9A7B2C 100%);
    --text-main: #EAEAEA;
    --text-muted: #888888;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Canvas for Particles */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle background gold glow */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* Content Container */
.maintenance-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-center {
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header & Text Styling */
.brand-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 300;
    letter-spacing: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.line-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.6) 50%, rgba(212, 175, 55, 0) 100%);
    margin: 30px auto;
}

.maintenance-msg {
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--gold-light);
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 12px;
}

.sub-msg {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Entry Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adaptations */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.8rem;
        letter-spacing: 8px;
    }
    
    .line-divider {
        margin: 25px auto;
    }
    
    .maintenance-msg {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .sub-msg {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2.1rem;
        letter-spacing: 6px;
    }
    
    .maintenance-msg {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .sub-msg {
        font-size: 1.1rem;
    }
}
