:root {
    --bg-dark: #07090f;
    --navy-blue: #0b132b;
    --accent-gold: #fcc36c;
    --accent-orange: #f58428;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(11, 19, 43, 0.45);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Layers */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.6);
    animation: slow-zoom 30s linear infinite alternate;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 19, 43, 0.3) 0%, rgba(7, 9, 15, 0.9) 100%);
    mix-blend-mode: multiply;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Animations */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes slide-up-fade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Glass Card */
.container {
    padding: 20px;
    width: 100%;
    max-width: 800px;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

/* Typography */
.launch-text {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.brand-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(252, 195, 108, 0.2);
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}


/* Social Links */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.social-icon:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    background: rgba(252, 195, 108, 0.1);
    box-shadow: 0 5px 15px rgba(252, 195, 108, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Staggered Animations */
.slide-up {
    opacity: 0;
    animation: slide-up-fade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .brand-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .subtitle {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

}
