:root {
    --sky-top: #5D4075;
    --sky-mid: #9E6B87;
    --sky-bottom: #DDA384;
    --sun-glow: #F2C272;
    --neon-glow: rgba(255, 235, 200, 0.8);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--sky-top);
    overflow: hidden;
}

.aesthetic-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--sky-top) 0%,
        var(--sky-mid) 40%,
        var(--sky-bottom) 100%
    );
    z-index: 0;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.08"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.sun-glow {
    position: absolute;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 50vh;
    background: radial-gradient(ellipse at center, var(--sun-glow) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    filter: blur(40px);
}

.content-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.neon-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-glow))
            drop-shadow(0 0 20px var(--neon-glow))
            drop-shadow(0 0 40px rgba(255, 150, 100, 0.5));
    animation: pulse-glow 6.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 9px var(--neon-glow))
                drop-shadow(0 0 18px var(--neon-glow))
                drop-shadow(0 0 34px rgba(255, 150, 100, 0.38));
    }
    35% {
        filter: drop-shadow(0 0 11px var(--neon-glow))
                drop-shadow(0 0 22px var(--neon-glow))
                drop-shadow(0 0 40px rgba(255, 150, 100, 0.46));
    }
    65% {
        filter: drop-shadow(0 0 13px var(--neon-glow))
                drop-shadow(0 0 26px var(--neon-glow))
                drop-shadow(0 0 46px rgba(255, 150, 100, 0.54));
    }
    100% {
        filter: drop-shadow(0 0 11px var(--neon-glow))
                drop-shadow(0 0 21px var(--neon-glow))
                drop-shadow(0 0 38px rgba(255, 150, 100, 0.44));
    }
}

.brand-text {
    color: #FFF2E0;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.social-link {
    color: rgba(255, 242, 224, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #FFF2E0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 3;
    animation: wander cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

@keyframes wander {
    0% {
        transform: translate(0px, 0px) scale(0.9);
        opacity: 0.18;
    }
    25% {
        transform: translate(var(--x1, 8px), var(--y1, -8px)) scale(1.02);
        opacity: 0.36;
    }
    50% {
        transform: translate(var(--x2, -12px), var(--y2, 10px)) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(var(--x3, 10px), var(--y3, 14px)) scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: translate(var(--x4, -8px), var(--y4, -10px)) scale(0.95);
        opacity: 0.22;
    }
}
