.reel-section {
    margin: 0 0 2rem;
    margin-left: -5rem;
    margin-right: -5rem;
    width: calc(100% + 10rem);
    position: relative;
    z-index: -2;
}

.reel-title {
    margin: 0 5rem 0.8rem;
    font-size: 2.1rem;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 0;
}

.reel-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 5rem 1rem;
    cursor: grab;
    position: relative;
    z-index: 1;
}

.reel-track::-webkit-scrollbar {
    display: none;
}

.reel-track.is-pointer-down {
    cursor: grabbing;
}

.reel-track.is-dragging .reel-card {
    pointer-events: none;
}

.reel-card {
    position: relative;
    z-index: 1;
    flex: 0 0 min(32rem, 85vw);
    min-height: 19rem;
    color: var(--text-white);
    text-decoration: none;
    box-shadow: var(--pixel-shadow);
    background: var(--text-primary);
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.reel-card:hover {
    transform: translateY(-0.3em);
    box-shadow:
        -0.2em 0 0 0 var(--border-primary),
        0.2em 0 0 0 var(--border-primary),
        0 -0.2em 0 0 var(--border-primary),
        0 0.2em 0 0 var(--border-primary),
        0.2em 0.7em 0 0 var(--shadow-soft),
        0.4em 0.5em 0 0 var(--shadow-soft);
}

.reel-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.reel-card-overlay {
    position: absolute;
    inset: 0;
    /* flat tint that fades on hover/focus */
    background-color: rgba(9, 3, 53, 0.45);
    pointer-events: none;
    opacity: 1;
    transition: opacity 220ms ease;
}

.reel-card:hover .reel-card-overlay,
.reel-card:focus .reel-card-overlay,
.reel-card:focus-within .reel-card-overlay {
    opacity: 0;
}

.reel-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.6rem;
    padding: 1rem;
} 

.reel-card-content h3 {
    color: var(--text-white);
    margin: 0 0 auto 0;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: -2px -2px 0 var(--border-primary), 2px -2px 0 var(--border-primary), -2px 2px 0 var(--border-primary), 2px 2px 0 var(--border-primary);
}

.reel-card-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    max-width: 90%;
}

.reel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.reel-tags span {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-primary);
    padding: 0.15rem 0.4rem;
    font-family: var(--f-pixel);
    font-size: 0.75rem;
}

.reel-instruction {
    margin: 0.8rem 0 0;
    text-align: center;
    font-family: var(--f-pixel);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    .reel-track {
        scroll-behavior: auto;
    }

    .reel-card {
        transition: none;
    }
}

@media only screen and (max-width: 600px), only screen and (orientation: portrait) {
    .reel-section {
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
    }

    .reel-title {
        margin: 0 2rem 0.8rem;
        font-size: 1.8rem;
    }

    .reel-track {
        padding: 0.5rem 2rem 1rem;
    }

    .reel-card {
        flex-basis: 88vw;
        min-height: 15rem;
    }

    .reel-card-content h3 {
        font-size: 2rem;
    }

    .reel-card-content p {
        max-width: 100%;
        font-size: 1rem;
    }
}
