:root {
    --cyan: #00d4ff;
    --dark-bg: #050505;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', monospace; }
.text-cyan { color: var(--cyan); }
.fs-small { font-size: 0.75rem; }

/* Cinematic Hero */
.vfx-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}

.vfx-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.vfx-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.vfx-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.vfx-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -5px;
}

/* Disney-Style Gallery (Modernized) */
.vfx-gallery-dock {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 3;
    background: linear-gradient(to top, black, transparent);
    padding-bottom: 4rem;
}

.vfx-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.vfx-scroller::-webkit-scrollbar { display: none; }

.vfx-card {
    flex: 0 0 450px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vfx-card:hover { transform: translateY(-10px); }

.vfx-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-meta {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.6rem;
    background: var(--cyan);
    color: #000;
    padding: 2px 6px;
}

/* Contact UI */
.contact-trigger {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.contact-trigger:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 20px var(--cyan);
}

.vfx-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 0;
    font-size: 1.5rem;
    outline: none;
}

.vfx-input:focus { border-bottom-color: var(--cyan); }

.btn-cyan-glitch {
    background: var(--cyan);
    border: none;
    padding: 15px 40px;
    font-family: 'JetBrains Mono';
    font-weight: bold;
    letter-spacing: 2px;
}