/* Core Design System & Tokens */
:root {
    --primary: #d48855; /* Terracotta / warm orange-brown */
    --secondary: #92a075; /* Sage green */
    --bg-dark: #24211e; /* Deep warm dark grey/brown */
    --text-main: #f5f0e6; /* Warm off-white */
    --text-muted: #b3a89a; /* Warm sand */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

/* Beautiful dynamic background */
body {
    background-color: var(--bg-dark);
    /* Subtly colored ambient gradients */
    background-image: 
        radial-gradient(at 0% 0%, hsla(30, 20%, 15%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(20, 40%, 25%, 0.2) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(100, 20%, 25%, 0.15) 0, transparent 50%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Smooth entry animation */
.container {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

/* Glassmorphism Card Design */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

/* Dynamic Hover State */
.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 
                0 0 30px rgba(212, 136, 85, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Prominent Brand Text */
.glow-text {
    font-size: 3.5rem; /* Slightly smaller to fit both words on one line */
    font-weight: 800;
    color: var(--primary);
    filter: drop-shadow(0 0 15px rgba(212, 136, 85, 0.2));
    letter-spacing: 2px;
}

.brand-global {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 8px;
    margin-left: 12px; 
    text-transform: uppercase;
}

.arriving-soon {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Micro-animations: Loader */
.loader {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.loader span {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Keyframes */
@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.3;
    } 
    40% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(212, 136, 85, 0.6);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 500px) {
    .glow-text {
        font-size: 3rem;
    }
    .brand-global {
        font-size: 1.2rem;
        letter-spacing: 8px;
        margin-left: 8px;
    }
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    p {
        font-size: 1.1rem;
    }
}
