/* ============================================
   IMPORTS & FONTS
   ============================================ */
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* ============================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================ */
:root {
    /* Layout */
    --width-default: min(1200px, 90vw);
    --diameter: 1432px;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 50px;
    
    /* Colors */
    --color-bg: darkslategray;
    --color-text: #eee;
    --color-white: #fff;
    --color-white-hover: #ccc;
    --color-overlay: rgba(0, 0, 0, 0.45);
    --color-overlay-light: rgba(0, 0, 0, 0.5);
    --color-border: rgba(255, 255, 255, 0.2);
    --color-border-light: rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 1s;
    
    /* Z-index layers */
    --z-base: 1;
    --z-content: 3;
    --z-overlay: 10;
    --z-menu-toggle: 100;
    --z-menu-overlay: 999;
    --z-menu-close: 1000;
    --z-header: 1000;
    
    /* Typography */
    --font-primary: 'ICA Rubrik', sans-serif;
    --font-secondary: Poppins, sans-serif;
    --font-size-base: 15px;
    
    /* Effects */
    --blur-backdrop: blur(10px);
    --glow-text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.8);
    --glow-filter: 
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) 
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-size: var(--font-size-base);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

svg {
    color: var(--color-white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    width: var(--width-default);
    height: 70px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: var(--z-base);
    padding-top: var(--spacing-xxl);
}

.logo img {
    width: clamp(100px, 12.5vw, 150px);
    height: auto;
}

.menu-toggle {
    all: unset;
    cursor: pointer;
    z-index: var(--z-menu-toggle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: clamp(36px, 5vw, 64px);
    height: clamp(36px, 5vw, 64px);
}

/* ============================================
   MENU OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-overlay);
    z-index: var(--z-menu-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open .slider .list .item .content,
body.menu-open .slider .arrows,
body.menu-open .slider .streaming-links,
body.menu-open .slider .play-pause-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.menu-content {
    width: var(--width-default);
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
    position: relative;
    padding: var(--spacing-xl);
}

.menu-close {
    all: unset;
    position: fixed;
    top: var(--spacing-md);
    right: var(--spacing-md);
    left: auto;
    cursor: pointer;
    color: var(--color-white);
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-menu-close);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-block;
    line-height: 1.2;
}

.menu-link:hover {
    color: var(--color-white-hover);
    transform: translateX(10px);
}

.menu-footer {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: auto;
    padding-top: var(--spacing-xl);
}

.social-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.social-link:hover {
    color: var(--color-white-hover);
}

.build-by {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.build-by-text {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ============================================
   SLIDER CONTAINER
   ============================================ */
.slider {
    color: var(--color-text);
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -70px;
}

.slider .list .item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-slow);
    pointer-events: none;
    opacity: 0;
}

.slider .list .item.active {
    pointer-events: auto;
    opacity: 1;
}

.slider .list .item.active ~ .item {
    opacity: 0;
}

/* ============================================
   SLIDER IMAGES
   ============================================ */
.slider .list .item .image {
    flex-shrink: 0;
    width: var(--diameter);
    height: var(--diameter);
    background-image: var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    border-radius: 50%;
    transform: rotate(-60deg);
    position: relative;
    transition: var(--transition-slow);
    filter: blur(30px);
}

.slider .item.active .image {
    filter: blur(0px);
    transform: rotate(0deg);
}

.slider .item.active ~ .item .image {
    transform: rotate(60deg);
}

.slider .list .item .image::before,
.slider .list .item .image::after {
    position: absolute;
    content: '';
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-120deg);
    background-image: 
        linear-gradient(to right, #0004, #0004),
        var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    transition: var(--transition-slow);
}

.slider .list .item .image::before {
    width: 70%;
    height: 70%;
}

.slider .list .item .image::after {
    width: 30%;
    height: 30%;
    background-image: var(--url);
    border: 3px solid #fff2;
    transform: translate(-50%, -50%) rotate(-170deg);
}

.slider .item.active .image::before,
.slider .item.active .image::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.slider .item.active ~ .item .image::before {
    transform: translate(-50%, -50%) rotate(120deg);
}

.slider .item.active ~ .item .image::after {
    transform: translate(-50%, -50%) rotate(170deg);
}

/* Background Model Image */
.slider .list::after {
    position: absolute;
    content: '';
    width: min(1000px, 100vw);
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(img/model.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    animation: showModel 1s ease-in-out 1 forwards;
}

@keyframes showModel {
    from {
        transform: translateX(-50%) scale(1.3) translateY(88px);
    }
}

/* ============================================
   SLIDER CONTENT
   ============================================ */
.slider .list .item .content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 90vw);
    max-width: 90vw;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(80px, 8vw, 260px);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    font-family: var(--font-secondary);
    text-shadow: 0 0 80px #000;
    z-index: var(--z-base);
    text-align: left;
}

.slider .list .item .content h2 {
    font-size: clamp(3rem, 12vw, 8rem);
    max-width: 100%;
    font-family: var(--font-primary);
    line-height: 0.9em;
    color: transparent;
    -webkit-text-stroke: clamp(2px, 0.3vw, 3px) var(--color-white);
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    grid-row: 1 / 3;
    position: relative;
    z-index: var(--z-content);
    text-shadow: var(--glow-text-shadow);
    filter: var(--glow-filter);
}

.slider .list .item.active .content h2 {
    transform: translateY(0);
}

.slider .list .item.active ~ .item .content h2 {
    transform: translateY(100%);
}

.slider .list .item .content p {
    text-align: right;
}

.slider .list .item .content p:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
    line-height: 1.5;
    white-space: normal;
    margin-top: -25px;
    margin-right: 0;
    text-align: right;
    position: relative;
    z-index: 5;
    min-height: fit-content;
    max-width: 100%;
}

.track-link {
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-base), opacity var(--transition-base);
    display: inline-block;
    margin-right: var(--spacing-xs);
}

.track-link:hover {
    color: var(--color-white-hover);
    opacity: 0.8;
}

/* ============================================
   AUDIO CONTROLS
   ============================================ */
.slide-audio {
    display: none;
}

.play-pause-btn {
    position: absolute;
    bottom: clamp(80px, 10vh, 100px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--color-border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
    transition: all var(--transition-base);
    backdrop-filter: var(--blur-backdrop);
}

.play-pause-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) scale(1.1);
}

.play-pause-btn svg {
    width: clamp(20px, 2.5vw, 24px);
    height: clamp(20px, 2.5vw, 24px);
    color: var(--color-white);
}

.play-pause-btn.playing .play-icon {
    display: none;
}

.play-pause-btn.playing .pause-icon {
    display: block !important;
}

.play-pause-btn:not(.playing) .pause-icon {
    display: none !important;
}

.play-pause-btn:not(.playing) .play-icon {
    display: block;
}

/* ============================================
   STREAMING LINKS
   ============================================ */
.streaming-links {
    position: absolute;
    right: max(20px, calc((100vw - var(--width-default)) / 2));
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
}

.prototype-streaming {
    right: auto;
    left: 50%;
    top: auto;
    bottom: clamp(120px, 15vh, 150px);
    transform: translateX(-50%);
    flex-direction: row;
    gap: var(--spacing-lg);
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(50px, 6vw, 70px);
    height: clamp(50px, 6vw, 70px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--color-border-light);
    transition: all var(--transition-base);
    backdrop-filter: var(--blur-backdrop);
    text-decoration: none;
}

.streaming-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.streaming-link img {
    width: clamp(30px, 4vw, 44px);
    height: clamp(30px, 4vw, 44px);
    display: block;
    transition: transform var(--transition-base);
    filter: brightness(0) invert(1);
}

.streaming-link:hover img {
    transform: scale(1.05);
}

/* ============================================
   NAVIGATION ARROWS
   ============================================ */
.arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(20px, 3vh, 30px);
    width: var(--width-default);
    max-width: 90vw;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
}

.arrows button {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrows button svg {
    width: clamp(60px, 8vw, 120px);
    height: clamp(60px, 8vw, 120px);
}

.arrows button.d-none {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (1024px and below)
   ============================================ */
@media all and (max-width: 1024px) {
    .slider .list .item .content {
        grid-template-columns: repeat(2, minmax(250px, 300px));
        gap: clamp(100px, 15vw, 200px);
        justify-items: center;
    }

    .slider .list .item .content h2 {
        font-size: clamp(4rem, 10vw, 6rem);
        text-align: center;
    }

    .slider .list .item .content p {
        text-align: center;
    }

    .slider .list .item .content p:last-child {
        margin-top: -150px;
        margin-right: 0;
        align-items: center;
    }

    .track-link {
        display: inline-block;
        margin-right: var(--spacing-xs);
        margin-bottom: 5px;
    }

    .streaming-links {
        right: max(20px, calc((100vw - var(--width-default)) / 2));
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .prototype-streaming {
        flex-direction: row !important;
    }

    .slider .list::after {
        width: min(800px, 85vw);
        background-size: contain;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE LARGE (900px and below)
   ============================================ */
@media all and (max-width: 900px) {
    html,
    body {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }

    header {
        background-color: var(--color-overlay-light);
        backdrop-filter: var(--blur-backdrop);
        padding: var(--spacing-sm) var(--spacing-md);
        margin: 0;
        width: 100%;
        height: auto;
        min-height: clamp(60px, 8vh, 70px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border-bottom: 1px solid var(--color-border);
        z-index: var(--z-header);
        padding-top: var(--spacing-sm);
        padding-top: max(var(--spacing-sm), env(safe-area-inset-top));
    }

    .logo img {
        width: clamp(80px, 15vw, 120px);
    }

    .slider {
        margin-top: 0;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        padding-top: clamp(60px, 8vh, 70px);
    }

    .slider .list::after {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background-size: auto 100dvh;
        background-position: center center;
        background-blend-mode: normal;
        opacity: 0.85;
    }

    .slider .list .item .content {
        grid-template-columns: 1fr;
        gap: clamp(8px, 1.5vh, 15px);
        top: clamp(85px, 12vh, 14vh);
        max-height: calc(100vh - clamp(85px, 12vh, 14vh) - 120px);
        overflow: hidden;
        justify-items: center;
        text-align: center;
        width: 90%;
        max-width: 90%;
    }

    .slider .list .item .content h2 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        text-align: center;
        grid-row: 1;
        justify-self: center;
        margin-top: clamp(10px, 2vh, 20px);
        margin-bottom: clamp(5px, 1vh, 10px);
        line-height: 1;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.5);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    }

    .slider .list .item .content p {
        text-align: center;
    }

    .slider .list .item .content p:last-child {
        align-items: center;
        margin-top: clamp(5px, 1vh, 10px);
        margin-right: 0;
        max-height: calc(100vh - clamp(70px, 10vh, 12vh) - clamp(2rem, 8vw, 3.5rem) - 150px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .track-link {
        display: block;
        margin-right: 0;
        margin-bottom: var(--spacing-xs);
        text-align: center;
    }

    .streaming-links {
        right: var(--spacing-md);
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .prototype-streaming {
        flex-direction: row !important;
        gap: clamp(8px, 2vw, 15px);
        bottom: clamp(60px, 8vh, 80px);
        position: absolute;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (767px and below)
   ============================================ */
@media all and (max-width: 767px) {
    .menu-content {
        height: 85vh;
        padding: var(--spacing-md);
    }

    .menu-link {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .social-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .slider .list::after {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background-size: auto 100dvh;
        background-position: center center;
        background-blend-mode: normal;
        opacity: 0.85;
    }

    .slider .list .item .content {
        gap: clamp(6px, 1.2vh, 12px);
        top: clamp(80px, 11vh, 95px);
        width: 90%;
        max-width: 90%;
        max-height: calc(100vh - clamp(80px, 11vh, 95px) - 100px);
        overflow: hidden;
    }

    .slider .list .item .content h2 {
        font-size: clamp(1.8rem, 7.5vw, 3rem);
        margin-top: clamp(8px, 1.5vh, 15px);
        margin-bottom: clamp(4px, 0.8vh, 8px);
        line-height: 1;
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.25),
            0 0 15px rgba(255, 255, 255, 0.15),
            0 2px 4px rgba(0, 0, 0, 0.5);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
    }

    .slider .list .item .content p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-top: 0;
    }

    .slider .list .item .content p:last-child {
        margin-top: clamp(4px, 0.8vh, 8px);
        background-color: var(--color-overlay-light);
        backdrop-filter: var(--blur-backdrop);
        padding: clamp(8px, 1.5vh, 15px);
        border-radius: 10px;
        border: 1px solid var(--color-border);
        max-height: calc(100vh - clamp(80px, 11vh, 95px) - clamp(1.8rem, 7.5vw, 3rem) - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .play-pause-btn {
        bottom: clamp(50px, 7vh, 70px);
        width: clamp(55px, 7vw, 65px);
        height: clamp(55px, 7vw, 65px);
    }

    .play-pause-btn svg {
        width: clamp(24px, 4vw, 32px);
        height: clamp(24px, 4vw, 32px);
    }

    .streaming-links {
        right: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .prototype-streaming {
        gap: clamp(8px, 1.5vw, 15px);
        bottom: clamp(50px, 7vh, 70px);
        position: absolute;
    }

    .arrows {
        bottom: max(clamp(10px, 1.5vh, 15px), env(safe-area-inset-bottom, 10px));
        padding: 0 var(--spacing-sm);
    }

    .arrows button svg {
        width: clamp(50px, 10vw, 80px);
        height: clamp(50px, 10vw, 80px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE SMALL (480px and below)
   ============================================ */
@media all and (max-width: 480px) {
    header {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-height: 60px;
    }

    .logo img {
        width: clamp(60px, 20vw, 100px);
    }

    .menu-toggle svg {
        width: clamp(32px, 8vw, 48px);
        height: clamp(32px, 8vw, 48px);
    }

    .menu-content {
        height: 90vh;
        padding: var(--spacing-sm);
    }

    .menu-close {
        top: var(--spacing-xs);
        right: var(--spacing-xs);
        left: auto;
        width: 45px;
        height: 45px;
    }

    .slider {
        padding-top: clamp(55px, 7vh, 65px);
    }

    .slider .list::after {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background-size: auto 100dvh;
        background-position: center center;
        background-blend-mode: normal;
        opacity: 0.85;
    }

    .slider .list .item .content {
        top: clamp(75px, 10vh, 85px);
        width: 95%;
        max-width: 95%;
        gap: clamp(5px, 1vh, 10px);
        max-height: calc(100vh - clamp(75px, 10vh, 85px) - 100px);
        overflow: hidden;
    }

    .slider .list .item .content h2 {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        margin-top: clamp(6px, 1.2vh, 12px);
        margin-bottom: clamp(3px, 0.6vh, 6px);
        line-height: 1;
        -webkit-text-stroke: 2px var(--color-white);
        text-shadow: 
            0 0 6px rgba(255, 255, 255, 0.2),
            0 0 12px rgba(255, 255, 255, 0.1),
            0 2px 4px rgba(0, 0, 0, 0.5);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.1));
    }

    .slider .list .item .content p:last-child {
        margin-top: clamp(3px, 0.6vh, 6px);
        max-height: calc(100vh - clamp(75px, 10vh, 85px) - clamp(1.6rem, 8vw, 2.5rem) - 110px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .prototype-streaming {
        bottom: clamp(45px, 6vh, 60px);
        position: absolute;
    }

    .streaming-link {
        width: clamp(45px, 12vw, 60px);
        height: clamp(45px, 12vw, 60px);
    }

    .streaming-link img {
        width: clamp(24px, 6vw, 36px);
        height: clamp(24px, 6vw, 36px);
    }

    .play-pause-btn {
        width: clamp(55px, 12vw, 65px);
        height: clamp(55px, 12vw, 65px);
    }

    .arrows button svg {
        width: clamp(40px, 12vw, 60px);
        height: clamp(40px, 12vw, 60px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - LANDSCAPE ORIENTATION
   ============================================ */
@media all and (max-height: 600px) and (orientation: landscape) {
    .slider .list .item .content {
        top: clamp(5%, 8vh, 10%);
    }

    .slider .list .item .content h2 {
        font-size: clamp(2.5rem, 8vh, 4rem);
        margin-top: 0;
    }

    .play-pause-btn {
        bottom: clamp(40px, 6vh, 60px);
    }

    .prototype-streaming {
        bottom: clamp(80px, 10vh, 100px);
    }

    .arrows {
        bottom: clamp(10px, 2vh, 15px);
    }
}
