:root {
    --bg-color: #020202;
    --text-color: #ffffff;
    --accent-red: #8b0000;
    --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-x: hidden;
}

/* 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 */
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;
}

.page-container {
    position: relative;
    min-height: 200vh;
    width: 100%;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('image.png') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.3) saturate(0.8);
    /* Moody horror/sci-fi feel */
}

/* Video Section */
.content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem;
    perspective: 1000px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 700px;
    /* Reduced by 30% from 1000px */
    justify-content: center;
    align-content: center;
}

.video-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Etched glass look */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 1s ease;
    filter: grayscale(0.2);
}

.video-item:hover video {
    opacity: 1;
    filter: grayscale(0);
}

/* Footer Section */
.footer {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 6rem;
}

.footer-logo {
    width: 400px;
    max-width: 85vw;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.05));
    transition: transform 1s ease;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1em;
    text-indent: 1em;
    opacity: 0.5;
    text-transform: uppercase;
    color: var(--text-color);
}

.copyright {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.3;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.social-link {
    width: 32px;
    height: 32px;
    fill: var(--text-color);
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.social-icon {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        align-items: center;
    }

    .video-item {
        width: 100%;
        max-width: 400px;
    }

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