:root {
    --bg-color: #020202;
    --text-color: #ffffff;
    --accent-red: #8b0000;
    --accent-cyan: #00d4ff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Syne', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Cinematic Effects Overlay */
.cinematic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
}

/* Subtle Film Grain (using SVG filter for high-end look) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    z-index: 21;
    pointer-events: none;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
    width: 500px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    transition: transform 6s cubic-bezier(0.1, 0, 0.1, 1);
}

.logo-link:hover {
    transform: scale(1.1);
}

.logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.8));
    display: block;
    margin-bottom: 1.5rem;
}

.tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    /* To offset the last letter's spacing */
    color: var(--text-color);
    opacity: 0.4;
    text-transform: uppercase;
    transition: all 4s ease;
    text-align: center;
    white-space: nowrap;
}

.logo-link:hover .tagline {
    opacity: 0.9;
    letter-spacing: 0.9em;
    filter: blur(0px);
}

@media (max-width: 768px) {
    .logo-container {
        width: 350px;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 0.4em;
    }
}