:root {
    --bg-color: #0a0a0a; /* Obsidian Black */
    --text-primary: #fdfaf1; /* Warm Parchment */
    --text-muted: #8e8e8e; /* Pebble Gray */
    --title-size: clamp(3rem, 10vw, 8rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image & Overlay */
body::before {
    content: '';
    position: fixed;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Muted for Option 1 */
    z-index: -2;
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
    transition: transform 0.2s ease-out;
}

/* Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 85%);
    z-index: -1;
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.title {
    font-size: var(--title-size);
    font-weight: 800;
    letter-spacing: -4px;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--text-primary);
    text-shadow: none; /* No neon shadow for Option 1 */
}

.accent {
    color: inherit;
}

.subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Subtle Animation */
.fadeIn {
    animation: fadeInScale 2.5s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}
