:root {
    --primary: #e60023;
    /* Bloody Red */
    --dark: #050505;
    --gray: #1a1a1a;
    --text: #ffffff;
    --font-head: 'Anton', sans-serif;
    --font-sub: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Fixed Background --- */
body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    /* Fixed Banner for entire site */
    background-image: url('assets/banner.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Dark overlay to ensure text readability over the fixed banner */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.65);
    /* Heavy dark overlay */
    z-index: -1;
}

/* --- Navigation --- */
.cinematic-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1000;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text);
    text-shadow: 0 0 10px rgba(230, 0, 36, 0.5);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-sub);
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #ff1a1a;
    box-shadow: 0 0 15px var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
    z-index: -1;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--dark) 100%);
    z-index: 0;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.main-title {
    font-family: var(--font-head);
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    /* Glitch Base */
    position: relative;
}

.glitch-effect:hover {
    animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--primary);
}

.tagline {
    font-family: var(--font-sub);
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-family: var(--font-sub);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-primary {
    background: var(--text);
    color: var(--dark);
    border: 2px solid var(--text);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.hint-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hint-line {
    width: 2px;
    height: 50px;
    background: var(--text);
}

/* --- Sections General --- */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--primary);
    text-transform: uppercase;
}

/* --- Video Section --- */
.video-section {
    background: #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.video-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /* Modern aspect ratio to prevent collapse/overflow issues */
    aspect-ratio: 16 / 9;
    /* Ensure it never exceeds 70% of viewport height to avoid scrolling overflow */
    max-height: 70vh;
    /* If max-height kicks in, width needs to adjust to maintain aspect ratio.
       We can use object-fit logic or just let max-width handle it.
       Actually, standard 16/9 with max-height constraint is tricky in pure CSS without 'height: auto' 
       and letting width shrink. 
       Let's stick to a safe Width-based limit that usually fits. 
       1000px width = 562px height. That fits easily in most screens.
    */
    box-shadow: 0 0 50px rgba(230, 0, 36, 0.1);
    border: 1px solid #333;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Mouse Spotlight Effect --- */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Reduced outer darkness from 0.8 to 0.4 */
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 0.4) 80%);
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: background 0.1s ease;
}

/* --- Story Section --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-block {
    flex: 1;
}

.sub-header {
    font-family: var(--font-sub);
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.feature-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-sub);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.feature-item .icon {
    font-size: 1.5rem;
}

.image-block {
    flex: 1;
    position: relative;
}

.image-block img {
    width: 100%;
    border-radius: 4px;
    box-shadow: -20px 20px 0 rgba(230, 0, 36, 0.1);
    transition: transform 0.3s;
}

.image-block:hover img {
    transform: scale(1.02);
}

/* --- Highlights (GIFs) --- */
.media-section {
    background: transparent;
    /* Transparent to see fixed bg */
    padding-bottom: 50px;
    border-bottom: 1px solid #1a1a1a;
}

.highlights-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-card {
    flex: 1 1 400px;
    /* Min width 400px, grow */
    max-width: 600px;
    aspect-ratio: 16/9;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Feature Block Layout (Alternating) --- */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No gap, sections handle padding */
}

/* Reuse story-section styles but ensure transparency */
.story-section {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 120px 5%;
}

.story-section:last-child {
    border-bottom: none;
}

.story-section .text-block h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.story-section .text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 0;
}

/* Image styling matching user preference */
.story-section .image-block img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    /* Deep shadow */
    border: 1px solid #333;
}

.story-section .image-block::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: var(--primary);
    z-index: -1;
    opacity: 0.1;
    border-radius: 4px;
}

/* Alternating Logic */
.story-section:nth-child(even) .flex-row {
    flex-direction: row-reverse;
}

.feature-list {
    /* Updated for No Emoji request */
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.feature-item .icon {
    display: none;
}

/* Hide emojis */

/* Mobile Adjustments */
@media (max-width: 768px) {
    .highlights-container {
        gap: 20px;
    }

    .story-section:nth-child(even) .flex-row {
        flex-direction: column;
    }

    .story-section {
        padding: 60px 20px;
    }
}

/* --- Footer --- */
.final-cta-section {
    padding: 150px 20px;
    text-align: center;
    background: linear-gradient(0deg, #111 0%, var(--dark) 100%);
    position: relative;
}

.content-wrapper h2 {
    font-family: var(--font-head);
    font-size: 4rem;
    margin-bottom: 10px;
}

.content-wrapper p {
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #888;
}

.download-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: var(--text);
    color: var(--dark);
    padding: 25px 60px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-mega-btn:hover {
    background: var(--primary);
    color: var(--text);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(230, 0, 36, 0.3);
}

.download-mega-btn .icon-box {
    font-size: 3rem;
}

.text-box {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.main-text {
    font-family: var(--font-head);
    font-size: 2rem;
    line-height: 1;
}

.sub-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright {
    margin-top: 80px;
    font-size: 0.8rem;
    color: #444;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
    }

    .main-title {
        font-size: 3rem;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .grid-item.wide,
    .grid-item.tall {
        grid-column: span 1;
        grid-row: auto;
    }
}

/* --- Keyframes --- */
@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(-10deg);
    }

    40% {
        transform: skew(10deg);
    }

    80% {
        transform: skew(-5deg);
    }

    100% {
        transform: skew(0deg);
    }
}

/* --- Mouse Spotlight Effect --- */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 0.4) 80%);
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: background 0.1s ease;
}

/* Optional: Slight red glow at the center for "flashlight" feel */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(230, 0, 36, 0.3);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow: 0 0 20px rgba(230, 0, 36, 0.6);
    transition: transform 0.1s ease;
}