.fullscreen-clip-wrap {
    display: grid;
    width: 100%;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
    /* background: #1b301e; */
    font-family: tenon, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    position: relative;
    padding-top: 0;
    background: linear-gradient(120deg,
            #2a238f 0%,
            #2f2aa0 35%,
            #332db0 60%,
            #2e2896 85%,
            #271f7f 100%);
}

.fullscreen-clip-wrap .slides {
    grid-area: 1 / 1 / -1 / -1;
    display: flex;
    gap: 2.5vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fullscreen-clip-wrap .slide {
    overflow: hidden;
    border-radius: 13vw;
    height: 70vh;
    width: 30vw;
    display: grid;
    opacity: 0;
    position: relative;
    pointer-events: auto;
    flex-shrink: 0;
}

.fullscreen-clip-wrap .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 12vw;
    pointer-events: none;
    z-index: 1;
}

.fullscreen-clip-wrap .slide:hover::after {
    opacity: 1;
}

.fullscreen-clip-wrap .slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    padding: 20px;
    pointer-events: none;
}

.fullscreen-clip-wrap .slide:hover .slide__content {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fullscreen-clip-wrap .slide__title {
    color: #fff;
    font-size: clamp(16px, 1.8vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Funnel Display', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fullscreen-clip-wrap .slide__btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.fullscreen-clip-wrap .slide__btn:hover {
    background: rgba(45, 161, 235, 0.3);
    border-color: rgba(45, 161, 235, 0.5);
    color: #fff;
}

.fullscreen-clip-wrap .slide--current {
    opacity: 0;
    /* Let GSAP handle the reveal */
}

.fullscreen-clip-wrap .slide__img {
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
}

.fullscreen-clip-wrap .clip {
    grid-area: 1 / 1 / -1 / -1;
    display: grid;
    pointer-events: none;
}

.fullscreen-clip-wrap .clip__img {
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.fullscreen-clip-wrap .cover {
    grid-area: 1 / 1 / -1 / -1;
    display: grid;
    grid-template-rows: 1fr auto;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
}

.fullscreen-clip-wrap .cover__title {
    margin: 10vh 0 0 0;
    align-self: center;
    color: #fff;
    font-weight: 700;
    font-size: 11vw;
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
    text-align: center;
    opacity: 1;
}

.fullscreen-clip-wrap .cover__title .char {
    display: inline-block;
}