        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease-in-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 1s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .script {
            font-family: 'Great Vibes', cursive;
        }

        .hero-logo {
            transition: all 0.6s ease-in-out;
            position: relative;
            z-index: 50;
        }

        .hero-logo.sticky {
            position: fixed !important;
            top: 1rem !important;
            left: 1rem !important;
            transform: scale(0.4) !important;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, #ffffff1c, #000000);
            animation: moveGradient 20s linear infinite;
            z-index: 0;
        }

        @keyframes moveGradient {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-50%, -50%);
            }
        }

        #glowCursor {
            transition: transform 0.15s ease;
        }

        .studio-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: auto;
        }

        .studio-track {
            display: flex;
            width: calc(250px * 8);
            animation: scrollStudio 40s linear infinite;
        }

        .studio-track img {
            flex: 0 0 auto;
            width: 250px;
            height: 200px;
            object-fit: cover;
            margin-right: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        @keyframes scrollStudio {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .sub-text {
            text-decoration: underline;
            padding-top: 15px;
        }

        @media screen and (max-width: 1900px) and (min-width:600px) {
            .sub-text {
                font-size: 30px;
                padding: 40px;
            }
        }

        @media screen and (max-width: 450px) {
            .sub-text {
                font-size: 30px;
            }
        }
