html {
            scroll-behavior: smooth;
        }

        @font-face {
            font-family: 'DIN';
            src: url('Fonts/DIN RegularAlternate.woff') format('woff');
            font-display: fallback;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #000;
            overflow-x: hidden;
            --sb-track-color: #000000;
            --sb-thumb-color: #ff1faa;
            --sb-size: 9px;
        }

        body::-webkit-scrollbar {
          width: var(--sb-size)
        }

        body::-webkit-scrollbar-track {
          background: var(--sb-track-color);
          border-radius: 5px;
        }

        body::-webkit-scrollbar-thumb {
          background: var(--sb-thumb-color);
          border-radius: 5px;
          border: 2px solid #000000;
        }

        @supports not selector(::-webkit-scrollbar) {
          body {
            scrollbar-color: var(--sb-thumb-color)
                             var(--sb-track-color);
          }
        }

        body::-webkit-scrollbar-thumb:hover {
            background: var(--sb-thumb-color);
            border-radius: 5px;
            border: 1.5px solid #000000;
            transition: border 0.3s ease-out;
            cursor: grab;
        }

        body::-webkit-scrollbar-thumb:active {
            cursor: grabbing;
        }

        .main-content {
            flex-grow: 1;
            display: flex;
            justify-content: left;
            align-items: center;
            transform: translateX(0) scale(1);
            transform-origin: left top;
            transition: transform 0.3s ease-out;
        }

        .main-content.nav-open {
            transform: scale(var(--nav-scale));
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 100vw;
            width: 200px;
            height: 100vh;
            transform: translateX(200px);
            transition: transform 0.3s ease-out;
            border-left: 1px solid #ffffff;
            border-right: 1px solid #ffffff;
            z-index: 20;
            background-color: #000;
        }

        .navbar.nav-open {
            transform: translateX(-200px);
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            align-items: left;
            gap: .5cqw;
            margin-left: 1.5cqw;
            margin-top: 32px;
            color: white;
            font-family: DIN;
            font-size: 18pt;
            background-color: black;
        }

        .nav-link {
            color: white;
            text-decoration: none;
        }

        .nav-link:hover {
            color: #FF1FAA;
            cursor: pointer;
        }

        .nav-link-selected {
            color:#ffffff;
            text-decoration: underline;
        }

        .nav-link-selected:hover {
            color: #FF1FAA;
            cursor: pointer;
        }

        .nav-toggle-btn, .inner-nav-toggle-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 11;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color:#000;
            border: none;
            color: white;
            transition: all 0.3s ease-out;
            font-weight: bold;
            border-radius: 20%;
        }

        .inner-nav-button {
            font-size: 28px;
        }

        .nav-toggle-btn:hover, .inner-nav-toggle-btn:hover {
            color: #ff0d9b;
            transform: scale(1.05);
        }

        .nav-toggle-btn:active, .inner-nav-toggle-btn:active {
            transform: scale(0.95);
        }
        
        .landing-content {
            position: relative;
            width: 100%;
        }

        #preview-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100cqw;
            height: auto;
            z-index: 10;
            transition: opacity 0.2s ease-out;
        }

        .inverted-masked-image {
            z-index: 1;
        }

        .mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            filter: brightness(0);
            pointer-events: none;
            z-index: 2;
        }

        .landing-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100cqw;
            height: auto;
            opacity: 0;
            user-select: none;
            transition: opacity 0.2s ease-out;
        }

        #slay-landing {
            z-index: 5;
        }

        #tucker-clip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100cqw;
            height: 13.8cqw;
            overflow: hidden;
            z-index: 5;
        }

        #ziegler-clip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100cqw;
            height: 13.8cqw;
            overflow: hidden;
            z-index: 5;
        }

        #play-clip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100cqw;
            height: 20.5cqw;
            overflow: hidden;
            z-index: 5;
        }

        #tucker-landing, #ziegler-landing {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
        }

        .intro-paragraph {
            position: absolute;
            margin-top: 38cqw;
            margin-left: 3.5cqw;
            display: block;
            z-index: 3;
            color: white;
            font-family: DIN;
            font-size: 1.6cqw;
        }
        .intro-line {
            display: block;
            animation: fadeInRiseUp 0.2s ease-out forwards;
            opacity: 0;
            margin: 0;
            padding: 0;
        }

        .intro-line:nth-of-type(1) { animation-delay: 0s; }
        .intro-line:nth-of-type(2) { animation-delay: 0.1s; }
        .intro-line:nth-of-type(3) { animation-delay: 0.2s; }
        .intro-line:nth-of-type(4) { animation-delay: 0.3s; }

        @keyframes fadeInRiseUp {
            from{
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes thumbnailRiseUp {
            from{
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        #work {
            position: absolute;
            top: 0;
            left: 0;
        }

        #lines-landing {
            z-index: 10;
        }

        .big-column {
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 13cqw;
            margin-left: 3.5cqw;
            width: 50cqw;
            flex-direction: column;
            align-items: center;
            padding-top: 29cqw;
            gap: 2cqw;
            z-index: 3;
            margin-bottom: 5cqw;
        }

        .thumbnail-text {
            color: white;
            font-family: DIN;
            font-size: 1.2cqw;
            text-decoration: underline;
            display: block;
            opacity: 0;
            animation: fadeInRiseUp 0.3s ease-out forwards;
            animation-delay: 0.3s;
        }

        .big-thumbnail {
            width: 55cqw;
            height: auto;
            padding-bottom: 0.5cqw;
            padding-top: 5cqw;
            opacity: 0;
            display: block;
            animation: thumbnailRiseUp 0.3s ease-out forwards;
            animation-delay: 0.1s;
        }
        
        .big-thumbnail .thumbnail {
            width: 100%;
            height: auto;
            display: block;
        }

        .small-column {
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 0.5cqw;
            margin-left: 63cqw;
            width: 20cqw;
            flex-direction: column;
            align-items: center;
            padding-top: 29cqw;
            gap: 2cqw;
            z-index: 3;
            margin-bottom: 5cqw;
        }

        .small-thumbnail {
            width: 33cqw;
            height: auto;
            padding-bottom: 0.5cqw;
            padding-top: 17.5cqw;
            opacity: 0;
            display: block;
            animation: thumbnailRiseUp 0.3s ease-out forwards;
            animation-delay: 0.2s;
        }
        
        .small-thumbnail .thumbnail {
            width: 100%;
            height: auto;
            display: block;
        }

        .thumbnail:hover {
            transform: scale(1.01);
            transition: transform 0.3s ease-out;
            cursor: pointer;
        }

        .thumbnail {
            transform: scale(1);
            transition: transform 0.3s ease-out;
        }
        
        .big-thumbnail:hover .thumbnail,
        .small-thumbnail:hover .thumbnail,
        .play-thumbnail .thumbnail {
            transform: scale(1.01);
            transition: transform 0.3s ease-out;
            cursor: pointer;
        }

        .thumbnail-text:hover {
            cursor: pointer;
            color: #FF1FAA;
        }

        .footer {
            position: absolute;
            top: 160cqw;
            left: -5%;
            margin-bottom: 10cqw;
            width: 110%;
            display: flex;
            justify-content: center;
            gap: 3cqw;
            padding: 1cqw 0;
            z-index: 10;
            border-top: 1px solid #ffffff;
        }

        .footer-links {
            color: white;
            font-family: DIN;
            font-size: 1.6cqw;
            text-decoration: none;
            transition: color 0.3s ease-out;
        }

        .footer-links:hover {
            color: #FF1FAA;
            text-decoration: underline;
            cursor: pointer;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 100vw;
            width: 200px;
            height: 100vh;
            transform: translateX(200px);
            transition: transform 0.3s ease-out;
            border-left: 1px solid #ffffff;
            z-index: 20;
            background-color: #000;
        }

        .navbar.nav-left {
            left: -200px;
            transform: translateX(0);
        }

        .navbar.nav-left.nav-open {
            transform: translateX(200px);
        }

        .project-background {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 25;
        }

        .project-window {
            position: fixed;
            top: 10vh;
            left: 10vw;
            width: 80vw;
            height: 80vh;
            background-color: #000;
            z-index: 30;
            transform: scale(1);
            transition: transform 0.5s ease-out;
            overflow-x: hidden;
            overflow-y: auto;
            padding: 0;
            margin: 0;
            border-radius: 10px;
            border: 2px solid #ffffff;
        }

        .project-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .project-close-btn:hover {
            color: #ff0d9b;
        }

        .project-close-btn:active {
            transform: scale(0.95);
        }

        .project-page {
            margin: 0;
            padding: 0;
            width: 100%;
            display: none;
            flex-direction: column;
            gap: 1.5cqw;
            position: relative;
        }

        .project-page iframe {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .video-group {
            left: 0;
            top: .8cqw;
            width: 98%;
            padding-top: 1cqw;
            padding-bottom: 1cqw;
            align-self: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: none;
            border-radius: 8px;
            gap: 1cqw;
        }

        .video-carousel-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .video-group iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            border-radius: 10px;
            display: none;
        }

        .video-group iframe.active {
            display: block;
        }

        .carousel-nav-btn {
            background-color: transparent;
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            font-size: 20px;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-out;
            flex-shrink: 0;
        }

        .carousel-nav-btn:hover {
            color: #FF1FAA;
            border-color: #FF1FAA;
            transform: scale(1.1);
        }

        .carousel-nav-btn:active {
            transform: scale(0.95);
        }

        .carousel-indicators {
            display: flex;
            gap: 0.5cqw;
            justify-content: center;
            margin-top: 1cqw;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0);
            cursor: pointer;
            transition: all 0.3s ease-out;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .carousel-dot.active {
            background-color: #FF1FAA;
            width: 24px;
            border-radius: 4px;
            border-color: #FF1FAA;
        }

        .carousel-dot:hover {
            background-color: #ff1fa996;
        }

        h1 {
            text-decoration: underline;
            font-size: 28pt;
        }



        .pepsi-text {
            margin-left: 4cqw;
            font-size: 12pt;
            font-family: DIN;
            color: white;
            margin-right: 16cqw;
        }

        .pepsi-text a {
            color: #ffffff;
            text-decoration: underline;
            display: inline;
            white-space: nowrap;
        }

        .pepsi-text a:hover {
            color: #FF1FAA;
            cursor: pointer;
        }

        .project-window::-webkit-scrollbar {
          width: var(--sb-size)
        }

        .project-window::-webkit-scrollbar-track {
          background: var(--sb-track-color);
          border-radius: 5px;
        }

        .project-window::-webkit-scrollbar-thumb {
          background: var(--sb-thumb-color);
          border-radius: 5px;
          border: 2px solid #000000;
        }

        @supports not selector(::-webkit-scrollbar) {
          .project-window {
            scrollbar-color: var(--sb-thumb-color)
                             var(--sb-track-color);
          }
        }

        .project-window::-webkit-scrollbar-thumb:hover {
            background: var(--sb-thumb-color);
            border-radius: 5px;
            border: 1.5px solid #000000;
            transition: border 0.3s ease-out;
            cursor: grab;
        }

        .project-window::-webkit-scrollbar-thumb:active {
            cursor: grabbing;
        }

        .project-titles{
            width: 80vw;
            top:0;
            left: 0;
            margin-top: 7vh;
            margin-left: 10vw;
        }

        .project-text{
            color:white;
            font-family: DIN;
            font-size: 12pt;
            text-decoration: underline;
        }

        .project-year{
            color:white;
            font-family: DIN;
            font-size: 12pt;
            text-decoration: underline;
            float: right;
        }

        .project-grid {
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 20cqw;
            margin-left: 3.5cqw;
            width: 100cqw;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-items: flex-start;
            padding-top: 29cqw;
            gap: 2cqw;
            z-index: 3;
            margin-bottom: 5cqw;
        }

        .play-thumbnail-item {
            width: 45%;
            display: flex;
            flex-direction: column;
            align-items: left;
        }

        .play-thumbnail {
            width: 100%;
            height: auto;
            opacity: 0;
            display: block;
            animation: thumbnailRiseUp 0.3s ease-out forwards;
            animation-delay: 0.2s;
        }

        .play-thumbnail-text {
            color: white;
            font-family: DIN;
            font-size: 1.2cqw;
            margin-top: 0.8cqw;
            text-decoration: underline;
            display: block;
            opacity: 0;
            animation: fadeInRiseUp 0.2s ease-out forwards;
            animation-delay: 0.4s;
        }

        .play-thumbnail-text:hover {
            color:#FF1FAA;
            cursor: pointer;
        }

        .play-thumbnail:hover {
            cursor: pointer;
        }

        .play-divider {
            position:absolute;
            top:0;
            left:0;
            margin-top: 82cqw;
            margin-left: 3.5cqw;
            background-color: white;
            height: 0.1cqw;
            width:92cqw;
        }

        .previous-project {
            position: fixed;
            top: 50vh;
            left: 5vw;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 11;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color:#000;
            border: none;
            color: white;
            transition: all 0.3s ease-out;
            font-weight: bold;
            border-radius: 20%;
        }

        .next-project {
            position: fixed;
            top: 50vh;
            right: 5vw;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 11;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color:#000;
            border: none;
            color: white;
            transition: all 0.3s ease-out;
            font-weight: bold;
            border-radius: 20%;
        }

        .previous-project:hover, .next-project:hover{
            color:#FF1FAA;
        }

        .video-banner {
            width: 73cqw;
            top:0;
            left:0;
            margin-left: 3.5cqw;
        }

        .video-banner.sixteen-nine {
            aspect-ratio: 16 / 9;
        }

        .video-banner.sixteen-nine iframe {
            width: 100%;
            height: 100%;
        }

        .tenstorrent-project{
            width: 100cqw;
            position: absolute;
        }

        .gfx-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5cqw;
            padding: 0 2cqw;
            width: 70cqw;
            margin-left: 3.5cqw;
        }

        .gfx-grid video {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .shot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5cqw;
            padding: 0 2cqw;
            width: 70cqw;
            margin-left: 3.5cqw;
        }

        .shot-grid video {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .main-shot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 1.5cqw;
            padding: 0 2cqw;
            width: 70cqw;
            margin-left: 3.5cqw;
        }

        .main-shot-grid iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: .5px solid #ffffff;
        }

        .shot-grid img {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .vimeo-container {
            width: 100%;
            height: auto;
            display: block;
            margin-top: 1cqw;
        }

        .vimeo-container.pepsi {
            aspect-ratio: 4 / 3;
        }

        .vimeo-container.tenstorrent {
            aspect-ratio: 16 / 9;
        }

        .vimeo-container.postman {
            aspect-ratio: 96 / 7;
            min-height: 450px;
        }

        .vimeo-container.fx-hulu {
            aspect-ratio: 16 / 9;
        }

        .vimeo-container iframe {
            width: 100%;
            height: 100%;
        }

        .project-divider {
            width: 100%;
            height: 3cqw;
        }

        .divider-line {
            width: 100cqw;
            height: 1px;
            background-color: #ffffff;
        }

        .project-divider .divider-line {
            margin-top: 3.5cqw;
            height: 3px;
        }

        .solo-shot {
            left: 0;
            margin-left: -5.9cqw;
            transform: scale(.8);
            height: auto;
            border: .5px solid #ffffff;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5cqw;
            padding: 0 2cqw;
            width: 70cqw;
            margin-left: 3.5cqw;
        }

        .image-grid img {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .solo-image {
            left: 0;
            margin-left: 3.5cqw;
            display: flex;
        }

        .solo-image img {
            width: 50%;
            height: auto;
        }

        .deadspace {
            width: 100%;
            height: 5cqw;
        }

        .gfx-row {
            display: flex;
            flex-direction: row;
            gap: 1.5cqw;
            padding: 0 2cqw;
            width: 70cqw;
            margin-left: 3.5cqw;
        }

        .gfx-row video {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .gfx-row img {
            width: 100%;
            height: auto;
            border: .5px solid #ffffff;
        }

        .background-image {
            background-color: #000000;
        }