:root {
    --primary: #FF3E00;
    --background: #000000;
    --foreground: #FFFFFF;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

.welcome-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.welcome-title {
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
    z-index: 1;
    mix-blend-mode: difference;
}

.accent-circle {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: var(--primary);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    from { transform: translate(-20%, -20%) scale(1); }
    to { transform: translate(20%, 20%) scale(1.2); }
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

footer a {
    color: inherit;
    text-decoration: underline;
}
