* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background: radial-gradient(circle at center, #000000, #000000);
    color: white;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    font-weight: 750;
    letter-spacing: 2px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;

}

h1 {
    font-weight: 800;
    /* extra bold */
}

p {
    font-weight: 400;
    /* regular */
}

button {
    font-weight: 600;
    /* semi-bold */
}

input,
textarea,
select,
button,
a {
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
}

/* header */

header {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);

}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



@media (max-width: 768px) {
    header.scrolled {
        padding: 15px 20px;
    }

}


.header-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav {
    display: flex;
    gap: 48px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .header-container {
        justify-content: flex-end;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        font-size: 28px !important;
        font-weight: 700;
        letter-spacing: 4px !important;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    }

    nav.active a {
        transform: translateY(0);
    }

    nav.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    nav.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    nav.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    nav.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    nav.active a:nth-child(5) {
        transition-delay: 0.5s;
    }
}


nav a {

    text-decoration: none;
    color: rgb(255, 255, 255);
    opacity: .6;
    font-size: 20px;
    letter-spacing: 2px;
    transition: .4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;

}


nav a:hover {


    opacity: 1;
    color: rgb(143, 233, 255);
    text-shadow: 0px 0px 10px rgba(143, 233, 255, 0.4);
    transform: translateY(-0.8px);

}


/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* hero */

.hero {

    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.hero-video {
    width: 100%;
    max-width: 620px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    margin: 40px auto 0;
    display: block;
    filter: brightness(0.8);
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-video {
        height: 100vh;
        max-height: 100vh;
        width: 100%;
        object-fit: contain;
        margin: 0;
    }
}

button,
.button {
    padding: 14px 40px;
    border-radius: 60px;
    border: 1px solid rgb(27, 27, 27);
    background: transparent;
    color: white;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s, color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

button:hover,
.button:hover {
    background: rgb(143, 233, 255);
    color: black;
    transform: translateY(-2px);
    /* small lift instead of scale */
}

/* services */

/* generic section */

.section {

    padding: 140px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    scroll-margin-top: 70px;

}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0vw;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            transparent 5%,
            rgba(40, 40, 40, 0.5) 20%,
            rgba(141, 232, 255, 0.473) 50%,
            rgba(40, 40, 40, 0.5) 80%,
            transparent 95%,
            transparent 100%);
    opacity: 0;
    transition: width 1.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.section.active::before {
    width: 90vw;
    opacity: 1;
    animation: linePulse 2.5s ease-in-out 1.5s infinite alternate;
}

@keyframes linePulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.section h1 {

    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section p {

    opacity: .7;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }

    .section h1 {
        font-size: 32px;
    }

    .section p {
        font-size: 13px;
        letter-spacing: 1px;
    }
}


/* studio */
#studio::before {
    display: none;
}


/* services */

.services {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.services-desc {

    max-width: 700px;
    margin-top: 0;

}

/* work */
.work {
    max-width: 100% !important;
}

.work h1,
.work p {
    max-width: 800px;
    margin: 0 auto;
}


/* contact */

.contact .button {

    margin-top: 60px;
    animation: breathe 5s ease-in-out infinite;

}

.contact .button:hover {
    animation-play-state: paused;
}

@keyframes breathe {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(166, 237, 255, 0);
    }

    50% {
        box-shadow:
            0 0 10px rgba(87, 221, 255, 0.6),
            0 0 20px rgba(87, 221, 255, 0.3);
    }
}



.service-card {

    width: 200px;
    height: 200px;

    border-radius: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.02);

    transition: .4s;

}

.service-card:hover {

    transform: translateY(-10px);

    border: 1px solid white;

}

.service-card h2 {

    font-size: 14px;
    letter-spacing: 3px;

}

/* footer */

.footer {
    background: linear-gradient(to top, #000, #050505);
    padding: 20px 40px 15px;
    border-top: 1px solid rgba(90, 90, 90, 0);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    justify-self: start;
}

.footer-logo img {
    width: 200px;
    opacity: 1;
    transition: .3s;
}

.footer-logo img:hover {
    transform: scale(1.03);
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: .6;
    transition: .3s;
}

.footer-nav a:hover {
    opacity: 1;
    color: rgb(143, 233, 255);
    text-shadow: 0px 0px 8px rgba(143, 233, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 25px;
    justify-self: end;
}

.footer-socials a {
    color: white;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    transition: .3s;
    display: block;
}

.muso-icon {
    transform: scale(1.1);
}

.footer-socials a:hover svg {
    color: rgb(143, 233, 255);
    transform: scale(1.07);
}

.footer-bottom {
    max-width: 1400px;
    margin: 20px auto 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: 12px;
    font-weight: 750;
    opacity: .6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-logo,
    .footer-nav,
    .footer-socials {
        justify-self: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
}

/* images */

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.gear-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
}

.image-grid img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: .6s cubic-bezier(0.2, 1, 0.3, 1);
    filter: saturate(0.8);
}

.image-grid img:hover {
    transform: scale(1.03) translate3d(0px, 0px, 5px);
}

.gear-grid img {
    height: 380px;
    max-height: none;
    object-fit: cover;
}

/* responsive images */
@media (max-width: 900px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .gear-grid {
        grid-template-columns: 1fr !important;
    }

    .image-grid img,
    .gear-grid img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

.footer-copy {

    margin-top: 20px;

    font-size: 12px;
    opacity: .7;
    letter-spacing: 3px;

}

/* MODERN PLAYER */

.modern-player {
    width: 100%;
    max-width: 100%;
    margin: 120px auto 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.cover-wrap {
    width: 270px;
    height: 270px;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0;
    justify-self: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.player-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-self: center;
}

.track-info h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.9px;
    margin-bottom: 7px;
}

.time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: .7;
    margin-bottom: 15px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    margin-bottom: 6px;
    border-radius: 2px;
    overflow: hidden;
}

#progress {
    height: 100%;
    width: 0%;
    background: rgb(143, 233, 255);
    transition: .1s linear;
    box-shadow: 0 0 10px rgba(143, 233, 255, 0.4);
}

.controls {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.controls button {
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    opacity: 0.8;
    transition: .3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.controls button:hover {
    opacity: 1;
}

.controls button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

#play-pause-btn svg {
    width: 32px;
    height: 32px;
}

.track-list {
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    justify-self: center;
}

.track-list li {
    position: relative;
    font-size: 14px;
    letter-spacing: 0.9px;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.track-list li span {
    z-index: 2;
}

.track-list li .eq {
    position: absolute;
    right: 0;
    margin-right: 0;
}

.track-list li:hover {
    transform: scale(1) translateX(-5px);
    opacity: 1;
}

/* Equalizer */
.eq {
    display: flex;
    gap: 3px;
    height: 12px;
    align-items: flex-end;
    opacity: 0;
    transition: 0.3s;
    width: 15px;
}

.eq.active {
    opacity: 1;
}

.eq span {
    width: 3px;
    background: rgb(143, 233, 255);
    border-radius: 2px;
    animation: eq-bounce 1s ease-in-out infinite alternate;
}

.eq span:nth-child(1) {
    animation-delay: 0.1s;
    height: 40%;
}

.eq span:nth-child(2) {
    animation-delay: 0.3s;
    height: 100%;
}

.eq span:nth-child(3) {
    animation-delay: 0.0s;
    height: 60%;
}

@keyframes eq-bounce {
    0% {
        transform: scaleY(0.3);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Pause EQ when not playing */
.eq.paused {
    opacity: 0 !important;
}

.eq.paused span {
    animation-play-state: paused;
    transform: scaleY(0.3);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

/* RESPONSIVE PLAYER */
@media (max-width: 1100px) {
    .modern-player {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 700px;
        padding: 20px;
    }

    .player-content {
        width: 100%;
        max-width: 100%;
    }

    .track-list {
        width: 100%;
        text-align: center;
    }

    .track-list li {
        justify-content: center;
    }

    .cover-wrap {
        justify-self: center;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .modern-player {
        margin-top: 60px;
        gap: 20px;
    }

    .track-info h3 {
        font-size: 16px;
    }

    .controls button {
        font-size: 24px;
    }

    .track-list {
        gap: 10px;
    }

    .track-list li {
        font-size: 13px;
    }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal>h1,
.reveal>p,
.reveal>.services-desc,
.reveal>.image-grid,
.reveal>.modern-player,
.reveal>.collab-reel,
.reveal>.button {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
        transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

@media (max-width: 768px) {

    .reveal>h1,
    .reveal>p,
    .reveal>.services-desc,
    .reveal>.image-grid,
    .reveal>.modern-player,
    .reveal>.collab-reel,
    .reveal>.button {
        transform: translateY(20px);
        transition:
            opacity 0.8s ease-out,
            transform 0.8s ease-out;
    }
}


.reveal.active>h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.reveal.active>p,
.reveal.active>.services-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.reveal.active>.image-grid,
.reveal.active>.modern-player,
.reveal.active>.collab-reel,
.reveal.active>.button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* BOOKING FORM STYLES */

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: transparent;
    border-bottom: none;
    position: absolute;
    width: 100%;
}

.logo-box img {
    height: 80px;
    opacity: 1;
}

.back-link {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-block;
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
    .back-link {
        display: none;
    }
}


.back-link:hover {

    opacity: 1;
    color: rgb(143, 233, 255);
}

.booking-container {

    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.booking-container h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.booking-container p {
    margin-bottom: 20px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 650px;
    width: 95%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
    opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.form-group textarea {
    resize: none;
    /* Removed the option to make boxes bigger */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(143, 233, 255);
    background: rgba(255, 255, 255, 0.08);
}

/* MOBILE FIXES FOR BOOKING PAGE */
@media (max-width: 768px) {
    .booking-container {
        padding-top: 80px;
        padding-bottom: 20px;
        height: auto;
        max-height: none;
        overflow: visible;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .booking-container h1 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .booking-container p {
        font-size: 12px;
        margin-bottom: 15px;
        max-width: 90%;
    }

    .booking-form {
        padding: 20px;
        transform: scale(0.95);
        transform-origin: top center;
        margin-top: -10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .booking-header {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .logo-box img {
        height: 50px;
    }

    /* Prevent body scroll on booking page mobile */
    body.booking-page {
        position: relative;
        width: 100%;
        height: auto;
        overflow: visible;
        background: radial-gradient(circle at center, #111111, #000000);
    }
}


.form-group select option {
    background: #111;
    color: white;
}

/* Ensure date input has same appearance and width */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    min-height: 45px;
    /* match select height */
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: white;
    color: black;
    font-size: 12px;
}

/* ANIMATIONS */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    70% {
        transform: translateY(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-drop-in {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.delay-1 {
    animation-delay: 0.6s;
}

/* BOOKING SOCIALS */

.booking-socials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}

.booking-socials a {
    color: white;
    transition: 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.booking-socials svg {
    width: 20px;
    height: 20px;
}

.booking-socials a:hover {
    color: rgb(143, 233, 255);
    transform: scale(1.2);
}

/* COLLABORATORS */

.collaborators {
    max-width: 100% !important;
    overflow: hidden;
    padding-bottom: 80px;
}

.collab-reel {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.collab-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scroll-reel 40s linear infinite;
}

.collab-track img {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.collab-track img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

@keyframes scroll-reel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 8 - 60px * 8));
    }
}

@media (max-width: 900px) {
    .collab-track img {
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0;
    }

    .collab-track {
        gap: 40px;
    }

    .section img {
        max-width: 100%;
        height: auto;
    }

    @keyframes scroll-reel {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 8 - 40px * 8));
        }
    }
}