/* ==========================================================================
   FONT FACES
   ========================================================================== */

@font-face {
    font-family: 'Kaspersky Sans Display';
    src: url('../fonts/Kaspersky_Sans_Display_Regular.woff2') format('woff2'),
         url('../fonts/Kaspersky_Sans_Display_Regular.woff') format('woff'),
         url('../fonts/Kaspersky Sans Display Regular.ttf') format('truetype'),
         url('../fonts/Kaspersky_Sans_Display_Regular.eot') format('embedded-opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kaspersky Sans Display';
    src: url('../fonts/Kaspersky_Sans_Display_SemiBold.woff2') format('woff2'),
         url('../fonts/Kaspersky_Sans_Display_SemiBold.woff') format('woff'),
         url('../fonts/Kaspersky Sans Display SemiBold.ttf') format('truetype'),
         url('../fonts/Kaspersky_Sans_Display_SemiBold.eot') format('embedded-opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Kaspersky Sans Display';
    src: url('../fonts/Kaspersky_Sans_Display_Bold.woff2') format('woff2'),
         url('../fonts/Kaspersky_Sans_Display_Bold.woff') format('woff'),
         url('../fonts/Kaspersky Sans Display Bold.ttf') format('truetype'),
         url('../fonts/Kaspersky_Sans_Display_Bold.eot') format('embedded-opentype');
    font-weight: 700;
    font-style: normal;
}


/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
    /* Transitions */
    --transition-speed: 0.8s;
    --transition-timing: ease;
    --transition-timing-in-out: ease-in-out;
    --parallax-transition: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Colors */
    --color-green-primary: #00a88e;
    --color-green-secondary: #29CCB1;
    --color-text: #333;
    --color-text-secondary: #727272;
    --color-bg: #e0f2f1;

    /* Spacing */
    --header-padding: 10px 40px;
    --header-padding-mobile: 10px 20px;
    --gap-small: 5px;
    --gap-medium: 15px;
    --gap-large: 20px;

    /* Sizes */
    /* --logo-height: 80px; */
    --logo-height: 30px;
    --logo-height-mobile: 20px;
    --title-height: 24px;
    --button-icon-height: 56px;
    --button-icon-height-mobile: 40px;
    --lang-button-size: 34px;
    --lang-button-size-mobile: 30px;
    --scroll-indicator-size: 45px;
    --character-card-size: 280px;
    --character-card-gap: 1.5rem;
    --character-card-name-font-size: 1.2rem;
    --character-card-position-font-size: 1rem;
    --characters-popup__page-indicator-font-size: 1.25rem;

    /* Z-index layers */
    --z-header: 1000;
    --z-layer-1: 1;
    --z-layer-2: 2;
    --z-layer-3: 3;
    --z-slides: 5;
    --z-slide-content: 6;
    --z-scroll-indicator: 10;
    --z-popup: 100;
    --z-popup-donation: 200;
    --z-splash: 5000;
}


/* ==========================================================================
   BASE STYLES
   ========================================================================== */

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Kaspersky Sans Display', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
}


/* ==========================================================================
   SPLINE SPLASH
   ========================================================================== */

.spline-splash {
    position: fixed;
    inset: 0;
    z-index: var(--z-splash);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-sizing: border-box;
    background-image: url('/assets/images/bg-popup.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.spline-splash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.spline-splash__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: min(420px, 90vw);
}

.spline-splash__image {
    width: clamp(140px, 35vw, 220px);
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.spline-splash__progress {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.spline-splash__progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-green-primary), #7deed8);
    transition: width 0.3s ease;
}

.spline-splash__progress-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-green-primary);
}

.spline-splash--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 600px) {
    .spline-splash__content {
        gap: 1rem;
    }

    .spline-splash__progress-text {
        font-size: 1rem;
    }
}


/* ==========================================================================
   HEADER COMPONENT
   ========================================================================== */

.header {
    /* Positioning */
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-header);

    /* Box Model */
    width: 100%;
    padding: var(--header-padding);
    box-sizing: border-box;

    /* Flexbox */
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Visual */
    background: transparent;
}

.header.person {
    background: rgba(255, 255, 255, 0.8);
}

/* Header Logo */
.header__logo a {
    display: block;
}

.header__logo img {
    height: var(--logo-height);
}

/* Header Title (Center) */
.header__title {
    /* Positioning - Centered */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    /* Visual */
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-timing);
}

.header__title--visible {
    opacity: 1;
}

.header__title img {
    height: var(--title-height);
}

/* Header Buttons */
.header__buttons {
    display: flex;
    align-items: center;
    gap: var(--gap-medium);
}

.header__button {
    position: relative;
    width: var(--button-icon-height);
    height: var(--button-icon-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
}

.header__button:focus-visible {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.header__button:focus:not(:focus-visible) {
    outline: none;
}

.header__button::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translate(-50%, -10px);
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(21, 26, 32, 0.95);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    white-space: normal;
    max-width: 220px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
    .header__button:hover::after,
    .header__button:focus-visible::after {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.header__button--people {
    background-image: url('/assets/images/button-people.svg');
}

.header__button--sound {
    background-image: url('/assets/images/button-sound.svg');
}

.header__button--view {
    background-image: url('/assets/images/button-view.svg');
}

.header__button--people.header__button--active {
    background-image: url('/assets/images/button-close.svg');
}

.header__button--sound.header__button--active {
    background-image: url('/assets/images/button-sound-on.svg');
}

.header__button--view.header__button--active {
    background-image: url('/assets/images/button-close.svg');
}

@media (hover: hover) and (pointer: fine) {
    .header__button--people:not(.header__button--active):hover,
    .header__button--people:not(.header__button--active):focus-visible {
        background-image: url('/assets/images/button-people-on.svg');
    }

    .header__button--sound:not(.header__button--active):hover,
    .header__button--sound:not(.header__button--active):focus-visible {
        background-image: url('/assets/images/button-sound-on.svg');
    }

    .header__button--view:not(.header__button--active):hover,
    .header__button--view:not(.header__button--active):focus-visible {
        background-image: url('/assets/images/button-view-on.svg');
    }
}

@media (max-width: 768px) {
    .header__button {
        width: var(--button-icon-height-mobile);
        height: var(--button-icon-height-mobile);
    }
}


/* ==========================================================================
   MAIN CONTENT & PARALLAX LAYERS
   ========================================================================== */

.main-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Parallax Background Container */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--parallax-transition);
}

.parallax-layer img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.parallax-layer--hidden-mobile {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-speed) var(--transition-timing-in-out),
                visibility var(--transition-speed) var(--transition-timing-in-out);
}

/* Layer 1 - Top Left Element */
.parallax-layer--top-left img {
    width: 40%; /* Partial coverage for layering effect */
    top: -20%; /* Extend beyond viewport for parallax movement */
    left: 5%;
}

/* Layer 1 - Bottom Right Element */
.parallax-layer--bottom-right img {
    width: 40%; /* Partial coverage for layering effect */
    bottom: -30%; /* Extend beyond viewport for parallax movement */
    right: 0;
}

/* Layer 2 - Center Element with Blend Mode */
.parallax-layer--center {
    mix-blend-mode: plus-lighter;
}

.parallax-layer--center-upper {
    mix-blend-mode: normal;
}

.parallax-layer--center img,
.parallax-layer--center-upper img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.parallax-layer--center img {
    width: 70%; /* Larger size for central focal point */
}

.parallax-layer--center-upper img {
    width: auto;
    height: 70%;
}

/* Hide center upper parallax on slides other than first */
.parallax-layer--center-upper--hidden {
    opacity: 0 !important; /* invisible but still present for transforms */
    pointer-events: none; /* no pointer interactions */
    visibility: hidden; /* ensure screen readers don't pronounce it */
    transition: opacity var(--transition-speed) var(--transition-timing-in-out), visibility var(--transition-speed) var(--transition-timing-in-out);
}

/* Z-index Stacking */
.parallax-layer--z1 {
    z-index: var(--z-layer-1);
}

.parallax-layer--z2 {
    z-index: var(--z-layer-2);
}

.parallax-layer--z3 {
    z-index: var(--z-layer-3);
}


/* ==========================================================================
   SLIDES
   ========================================================================== */

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: var(--z-slides);
}

.slide {
    /* Positioning */
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--z-slides);

    /* Layout */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* Initial State - Hidden */
    opacity: 0;
    transform: translateY(20px);

    /* Transitions */
    transition: opacity var(--transition-speed) var(--transition-timing-in-out),
                transform var(--transition-speed) var(--transition-timing-in-out);
}

.slide--active {
    opacity: 1;
    transform: translateY(0);
}

.slide__content {
    max-width: 600px;
    padding: var(--gap-large);
    z-index: var(--z-slide-content);
}

h1.site-title {
    font-weight: 700;
    font-size: 5rem;
    background: linear-gradient(to right, #23bda4, #2dd9bd, #38e5c8, #43d8be);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    position: absolute;
    top: -10000px;
}

.slide__title-image {
    max-width: 80%;
    height: auto;
}

.slide__heading {
    font-size: 1.5rem;
    margin-bottom: var(--gap-large);
    font-weight: bold;
}

.slide__text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.slide__text-green-primary {
    color: var(--color-green-primary);
}

/* ==========================================================================
   MOVING TIPS
   ========================================================================== */

.moving-tips {
    /* Positioning */
    position: absolute;
    bottom: clamp(12px, 5vh, 40px);
    left: clamp(12px, 6vw, 40px);
    z-index: 20;

    /* Layout */
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;

    /* Visual */
    max-width: min(450px, 60vw);
}

.moving-tips__icon {
    flex-shrink: 0;
    /* width: 50px; */
    height: clamp(40px, 9vh, 70px);
    object-fit: contain;
}

.moving-tips__text {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-bg);
    margin: 0;
    font-weight: 400;
}


/* ==========================================================================
   SCROLL DOWN INDICATOR
   ========================================================================== */

.scroll-down {
    /* Positioning */
    position: fixed;
    bottom: clamp(10px, 4vh, 30px);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-scroll-indicator);

    /* Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Interaction */
    cursor: pointer;

    /* Visibility */
    opacity: 1;
    transition: opacity var(--transition-speed) var(--transition-timing);
}

.scroll-down--hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-down__icon {
    width: var(--scroll-indicator-size);
    animation: bounce 2s infinite;
}

.scroll-down__text {
    margin-top: var(--gap-small);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    /* Header Adjustments */
    .header {
        padding: var(--header-padding-mobile);
        /* background: rgba(255, 255, 255, 0.8); */
    }

    .header__logo img {
        height: var(--logo-height-mobile);
    }

    .header__title {
        display: none; /* Hide central title on mobile for more space */
    }

    .header__button--lang {
        width: var(--lang-button-size-mobile);
        height: var(--lang-button-size-mobile);
        font-size: 12px;
    }

    /* Parallax Layers - Adjust sizes and positions for mobile */
    .parallax-layer--center-upper img {
        width: calc(100vw - 10px);
        max-width: calc(100% - 10px);
        height: auto;
    }

    /* Slide Content */
    .slide__content {
        max-width: 90%;
    }

    h1.site-title {
        font-size: 3rem;
    }

    /* Moving Tips */
    .moving-tips {
        bottom: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .moving-tips__icon {
        width: 40px;
        height: 40px;
    }

    .moving-tips__text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Parallax Layers - Adjust sizes and positions for mobile */
    .parallax-layer--center-upper img {
        width: calc(100vw - 10px);
        max-width: calc(100% - 10px);
        height: auto;
    }
}

    .slide__heading {
        font-size: 1.2rem;
    }

    .slide__text {
        font-size: 1rem;
    }

    /* Parallax Layers - Larger on mobile for better visibility */
    .parallax-layer--top-left img,
    .parallax-layer--bottom-right img {
        width: 40%;
    }


/* ==========================================================================
   CHARACTERS POPUP
   ========================================================================== */

.characters-popup {
    /* Positioning */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-popup);

    /* Visual */
    background-image: url('/assets/images/bg-popup.webp');
    background-size: cover;
    background-position: center;

    /* Overflow handling for shallow viewports */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* Initial State - Hidden */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* Transitions */
    transition: opacity var(--transition-speed) var(--transition-timing),
                visibility var(--transition-speed) var(--transition-timing);

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 5vh, 2.5rem) clamp(1rem, 5vw, 80px);
    box-sizing: border-box;
}

.characters-popup--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.characters-popup--slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 1.5rem;
}

.characters-popup--slide .characters-popup__content {
    max-width: 100%;
    height: 100%;
    justify-content: center;
}

#charactersSlide {
    align-items: stretch;
}

/* #charactersSlide .characters-popup__content {
    padding: 1rem 0;
} */

.characters-popup__content {
    width: 100%;
    max-width: 1292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.characters-popup__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    max-width: 500px;
}


/* ==========================================================================
   VIEWPORT HEIGHT SAFEGUARDS
   ========================================================================== */

@media (max-height: 820px) {
    body.home-desktop .slide:not(#frontOfficeScene) {
        padding: clamp(80px, 14vh, 140px) clamp(20px, 6vw, 80px) clamp(40px, 10vh, 100px);
        box-sizing: border-box;
    }

    body.home-desktop .slide__content {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        margin: 0 auto;
    }

    .characters-popup__content {
        gap: 1.5rem !important;
    }

    .characters-popup__title {
        font-size: 2.1rem;
    }

    
}

@media (max-height: 700px) {
    :root {
        --character-card-size: 230px;
        --character-card-gap: 1rem;
    }

    body.home-desktop .slide__heading {
        font-size: 1.2rem;
    }

    body.home-desktop .slide__text {
        font-size: 0.95rem;
    }
    .character-card__position {
        font-size: 0.9rem;
    }

    /* Reduce specific slide title image for short viewports */
    /* img.slide__title-image[src="/assets/images/neuyazvimie.gif"] { */
    img.slide__title-image {    
        max-width: 50%;
        height: auto;
    }

}

@media (max-height: 700px) and (min-width: 769px) {
    .parallax-layer--center-upper img {
        width: auto;
        height: 65%;
    }
}

@media (max-height: 640px) {
    /* .header.person {
        padding: 0 40px;
    } */

    :root {
        --character-card-size: 180px;
        --character-card-gap: 1rem;
        --character-card-name-font-size: 0.9rem;
        --character-card-position-font-size: 0.8rem;
        --characters-popup__page-indicator-font-size: 1rem;
    }

    .characters-popup {
        align-items: flex-start;
        padding-top: clamp(80px, 18vh, 140px);
    }

    .characters-carousel__nav img {
        width: 46px;
        height: 46px;
    }

    .characters-popup__help-button {
        flex-wrap: wrap;
        row-gap: 0.75rem;
    }

    .characters-popup__title {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   CHARACTERS CAROUSEL
   ========================================================================== */

.characters-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.characters-carousel__container {
    width: calc(4 * var(--character-card-size) + 3 * var(--character-card-gap)); /* 4 cards + 3 gaps */
    max-width: calc(100vw - 160px); /* Leave space for arrows and padding */
    overflow: hidden;
    position: relative;
    flex-shrink: 1;
}

.characters-carousel__track {
    display: flex;
    gap: var(--character-card-gap);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.characters-carousel__nav {
    /* Reset button styles */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    /* Positioning */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    /* Visual */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.characters-popup--active .characters-carousel__nav {
    opacity: 0.7;
    visibility: visible;
}

.characters-carousel__nav--prev {
    left: 10px;
}

.characters-carousel__nav--next {
    right: 10px;
}

.characters-popup--active .characters-carousel__nav:hover {
    opacity: 1;
}

.characters-carousel__nav:focus {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.characters-carousel__nav:focus:not(:focus-visible) {
    outline: none;
}

.characters-carousel__nav img {
    width: 56px;
    height: 56px;
    display: block;
}

.characters-carousel__nav--next img {
    transform: scaleX(-1);
}


/* ==========================================================================
   CHARACTER CARD
   ========================================================================== */

.character-card {
    flex-shrink: 0;
    width: var(--character-card-size);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* .character-card:hover {
    transform: translateY(-4px);
} */

.character-card__image-container {
    position: relative;
    width: var(--character-card-size);
    height: var(--character-card-size);
    background-color: var(--color-green-secondary);
    border-radius: 1rem;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    transition: background-color var(--transition-speed) var(--transition-timing);
    /* transition: background-image var(--transition-speed) var(--transition-timing),
                background-color var(--transition-speed) var(--transition-timing); */
}

.character-card__image-container::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/card-hover-back.webp');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-timing);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0; /* behind the main image but above the container background */
}

.character-card__image-container:hover::before{
    opacity: 1;
}

.character-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    z-index: 1;
}

.character-card__name-block {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.character-card__firstname,
.character-card__lastname {
    background-color: #deeeeb;
    padding: 0.5rem 0.75rem 0 0.75rem;
    border-radius: 0 4px 4px 0;
    font-size: var(--character-card-name-font-size);
    font-weight: 700;
    color: var(--color-text);
    display: inline-block;
    width: fit-content;
}

.character-card__firstname {
    margin-bottom: -1px;
}

.character-card__lastname {
    border-radius: 0 4px 0 0;
}

.character-card__position {
    font-size: var(--character-card-position-font-size);
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
    min-height: 2.8rem;
    padding: 0 0.75rem;
}

.slide .character-card__position {
    text-align: left;
}


/* ==========================================================================
   POPUP FOOTER ELEMENTS
   ========================================================================== */

.characters-popup__page-indicator {
    font-size: var(--characters-popup__page-indicator-font-size);
    color: var(--color-green-secondary);
    font-weight: 600;
}

.characters-popup__help-button {
    /* Reset button styles */
    border: none;
    cursor: pointer;

    /* Visual */
    background-color: var(--color-green-secondary);
    color: var(--color-bg);
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Kaspersky Sans Display', sans-serif;

    /* Transitions */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.characters-popup__help-button:hover {
    background-color: var(--color-green-primary);
    /* transform: translateY(-2px); */
}

.characters-popup__help-button:focus {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.characters-popup__help-button:focus:not(:focus-visible) {
    outline: none;
}


/* ==========================================================================
   RESPONSIVE - CHARACTERS POPUP
   ========================================================================== */

/* Large Desktop: 4 cards per page (default) */
/* No media query needed - this is the default */

/* Large Desktop: 4 cards per page */
@media (min-width: 1401px) {
    .characters-carousel__nav--prev {
        left: -60px;
    }

    .characters-carousel__nav--next {
        right: -60px;
    }
}

/* Medium Desktop: 3 cards per page */
@media (max-width: 1400px) and (min-width: 1001px) {
    .characters-carousel__container {
        width: calc(3 * var(--character-card-size) + 2 * var(--character-card-gap)); /* 3 cards + 2 gaps */
        max-width: calc(100vw - 140px); /* Leave space for arrows */
    }

    .characters-carousel__nav--prev {
        left: -50px;
    }

    .characters-carousel__nav--next {
        right: -50px;
    }
}

/* Small Desktop/Tablet: 2 cards per page */
@media (max-width: 1000px) and (min-width: 769px) {
    .characters-popup__content {
        gap: 3rem;
    }

    .characters-popup__title {
        font-size: 2rem;
    }

    .characters-carousel__container {
        width: calc(2 * var(--character-card-size) + var(--character-card-gap)); /* 2 cards + 1 gap */
        max-width: calc(100vw - 120px); /* Leave space for arrows */
    }

    .characters-carousel__nav--prev {
        left: -40px;
    }

    .characters-carousel__nav--next {
        right: -40px;
    }

    .characters-carousel__nav img {
        width: 48px;
        height: 48px;
    }

    .characters-carousel__track {
        gap: var(--character-card-gap);
    }
}

/* Mobile: 1 card per page */
@media (max-width: 768px) {
    :root {
        --character-card-size: 250px;
        --character-card-gap: 1rem;
    }

    .characters-popup {
        padding: 1rem;
    }

    .characters-popup__content {
        gap: 2rem;
    }

    .characters-popup__title {
        font-size: 1.5rem;
    }

    .characters-carousel__container {
        width: var(--character-card-size); /* 1 card */
        max-width: calc(100% - 100px); /* Leave space for arrows */
    }

    .characters-carousel__nav--prev {
        left: 10px;
    }

    .characters-carousel__nav--next {
        right: 10px;
    }

    .characters-carousel__nav img {
        width: 40px;
        height: 40px;
    }

    .characters-carousel__track {
        gap: var(--character-card-gap);
    }

    .character-card__firstname,
    .character-card__lastname {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .character-card__position {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }

    .characters-popup__page-indicator {
        font-size: 1rem;
    }

    .characters-popup__help-button {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
}


/* ==========================================================================
   DONATION POPUP
   ========================================================================== */

.slide .donation-popup {
    text-align: left;
}

.donation-popup {
    /* Positioning */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-popup-donation);

    /* Visual */
    background-color: rgba(0, 0, 0, 0.5);

    /* Initial State - Hidden */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* Transitions */
    transition: opacity var(--transition-speed) var(--transition-timing),
                visibility var(--transition-speed) var(--transition-timing);

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.donation-popup--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.donation-popup__content {
    /* Positioning */
    position: relative;
    width: 100%;
    max-width: 600px;

    /* Visual */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 48px;
    padding: 3rem 3rem 0 3rem;
    box-sizing: border-box;

    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Ensure popup content doesn't exceed viewport height so inner text can scroll */
    max-height: calc(100vh - 120px);
    overflow: hidden;
}

.donation-popup__close-button {
    /* Reset button styles */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    /* Positioning */
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;

    /* Visual */
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.donation-popup__close-button:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.donation-popup__close-button:focus {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.donation-popup__close-button:focus:not(:focus-visible) {
    outline: none;
}

.donation-popup__close-button img {
    width: 32px;
    height: 32px;
    display: block;
}

.donation-popup__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.donation-popup__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    /* Allow text block to grow and scroll inside the popup content like .person-info__content */
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 240px);
}

.donation-popup__text p {
    margin: 0 0 1rem 0;
    padding-right: 1rem;
}

.donation-popup__text p:last-child {
    margin-bottom: 0;
}

.donation-popup__list {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.donation-popup__list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--color-text);
}

.donation-popup__list li::marker {
    color: var(--color-green-primary);
}

.donation-popup__list li:last-child {
    margin-bottom: 0;
}

.donation-popup__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.donation-popup__button {
    /* Reset link styles */
    text-decoration: none;
    display: inline-block;

    /* Visual */
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Kaspersky Sans Display', sans-serif;
    text-align: center;

    /* Transitions */
    transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.donation-popup__button--primary {
    background-color: var(--color-green-secondary);
    color: var(--color-bg);
    border: 2px solid var(--color-green-secondary);
}

.donation-popup__button--primary:hover {
    background-color: var(--color-green-primary);
    border-color: var(--color-green-primary);
}

.donation-popup__button--secondary {
    background-color: transparent;
    color: var(--color-green-primary);
    border: 2px solid var(--color-green-primary);
}

.donation-popup__button--secondary:hover {
    background-color: var(--color-green-primary);
    color: var(--color-bg);
}

.donation-popup__button:focus {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.donation-popup__button:focus:not(:focus-visible) {
    outline: none;
}

.donation-popup__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1rem;
    margin-bottom: 0;
}

.donation-popup__image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
    height: 20vh;
}


/* ==========================================================================
   RESPONSIVE - DONATION POPUP
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
    .donation-popup {
        padding: 1rem;
    }

    .donation-popup__content {
        border-radius: 32px;
        padding: 2rem 2rem 0 2rem;
        gap: 1rem;
        margin-top: 20%;
    }

    .donation-popup__close-button {
        top: 1rem;
        right: 1rem;
    }

    .donation-popup__close-button img {
        width: 24px;
        height: 24px;
    }

    .donation-popup__title {
        font-size: 1.5rem;
    }

    .donation-popup__text {
        font-size: 0.8rem;
    }

    .donation-popup__buttons {
        flex-direction: column;
    }

    .donation-popup__button {
        width: 100%;
        padding: 0.5rem 0;
    }

    .donation-popup__image {
        margin-top: 0;
    }

    .donation-popup__image img {
        max-height: 120px;
    }
}


/* ==========================================================================
   PERSON PAGE
   ========================================================================== */

.person-page {
    overflow: hidden;
}

/* Show header title on person page */
.person-page .header__title {
    opacity: 1;
}

/* Spline Background */
.person-spline-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.person-spline-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Navigation Elements */
.person-navigation {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: var(--z-slide-content);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.person-back-link {
    position: absolute;
    left: 40px;
    top: 15%;
    transform: translateY(-50%);
    
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-green-primary);
    text-decoration: none;
    
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    
    pointer-events: all;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.person-back-link:hover {
    background-color: var(--color-green-secondary);
    color: white;
    transform: translateY(-50%) translateY(-2px);
}

.person-back-link img {
    padding-right: 10px;
    height: 12px;
}

.person-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    cursor: pointer;
    pointer-events: all;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.person-nav:hover {
    opacity: 1;
}

.person-nav--prev {
    left: 40px;
}

.person-nav--next {
    right: 150px;
}

.person-nav img {
    width: 56px;
    height: 56px;
    display: block;
}

.person-nav--next img {
    transform: scaleX(-1);
}

.person-indicator {
    position: absolute;
    left: 30%;
    bottom: 5%;
    transform: translate(-50%, -50%);
    
    background-color: white;
    color: var(--color-green-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    
    pointer-events: all;
}

/* Character Info Block */
.person-info {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    
    width: 40%;
    height: 70%;
    max-height: calc(100vh - 160px);
    
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 2rem;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
    z-index: var(--z-slide-content);
}

/* Tabs */
.person-info__tabs {
    display: flex;
    gap: 0;
    background-color: white;
    border: 2px solid var(--color-green-primary);
    border-radius: 40px;
    padding: 4px;
}

.person-info__tab {
    flex: 1;
    background: none;
    border: none;
    
    font-family: 'Kaspersky Sans Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-green-primary);
    
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.person-info__tab--active {
    background-color: var(--color-green-primary);
    color: white;
}

.person-info__tab:hover:not(.person-info__tab--active) {
    background-color: rgba(0, 168, 142, 0.1);
}

/* Tab Content */
.person-info__content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.person-info__tab-content {
    display: none;
}

.person-info__tab-content--active {
    display: block;
}

.person-info__name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--color-text);
}

.person-info__position {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0 0 1.5rem 0;
}

.person-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--color-text);
}

.person-info__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.person-info__text p {
    margin: 0 0 1rem 0;
    padding-right: 1rem;
}

.person-info__text p:last-child {
    margin-bottom: 0;
}

.person-info__text a {
    color: var(--color-green-primary);
    text-decoration: none;
}

/* Custom scrollbar for info content */
.person-info__content::-webkit-scrollbar {
    width: 6px;
}

.person-info__content::-webkit-scrollbar-track {
    background: rgba(0, 168, 142, 0.1);
    border-radius: 3px;
}

.person-info__content::-webkit-scrollbar-thumb {
    background: var(--color-green-secondary);
    border-radius: 3px;
}

.person-info__content::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-primary);
}

/* Firefox scrollbar parity */
.person-info__content {
    scrollbar-width: thin;
    scrollbar-color: var(--color-green-secondary) rgba(0, 168, 142, 0.1);
}

/* Custom scrollbar copied for donation popup text to match person-info */
.donation-popup__text::-webkit-scrollbar {
    width: 6px;
}

.donation-popup__text::-webkit-scrollbar-track {
    background: rgba(0, 168, 142, 0.1);
    border-radius: 3px;
}

.donation-popup__text::-webkit-scrollbar-thumb {
    background: var(--color-green-secondary);
    border-radius: 3px;
}

.donation-popup__text::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-primary);
}

/* Cross-browser settings for donation popup scrollbar */
.donation-popup__text {
    scrollbar-width: thin;
    scrollbar-color: var(--color-green-secondary) rgba(0, 168, 142, 0.1);
}


/* ==========================================================================
   RESPONSIVE - PERSON PAGE
   ========================================================================== */

/* Tablet */
@media (max-width: 1200px) {
    .person-info {
        width: 400px;
        right: 30px;
    }
    
    .person-back-link {
        left: 30px;
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .person-nav--prev {
        left: 120px;
    }
    
    .person-nav--next {
        right: 120px;
    }
}

@media (max-height: 900px) and (min-width: 769px) {
    .person-navigation {
        top: auto;
        bottom: 0;
        height: auto;
        transform: none;
        padding: 20px 40px;
        box-sizing: border-box;
    }

    .person-back-link {
        top: 120px;
        transform: none;
    }

    .person-nav {
        top: auto;
        bottom: 40px;
        transform: none;
    }

    .person-nav--prev {
        left: 40px;
    }

    .person-nav--next {
        right: clamp(60px, 8vw, 140px);
    }

    .person-indicator {
        bottom: clamp(12px, 5vh, 40px);
        transform: none;
    }

    .person-info {
        top: 120px;
        bottom: 40px;
        height: auto;
        max-height: none;
        transform: none;
    }
}

@media (max-height: 720px) and (min-width: 769px) {
    .person-info {
        padding: 1.25rem;
        border-radius: 30px;
    }

    .person-info__tabs {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .person-info__tab {
        flex: 1 1 45%;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .person-info__name {
        font-size: 1.75rem;
    }

    .person-info__title {
        font-size: 1.2rem;
    }

    .person-info__text {
        font-size: 0.95rem;
    }

    .person-back-link {
        top: 100px;
        padding: 0.75rem 1.25rem;
    }
}

/* Hide close button on desktop */
.person-info__close-button {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .person-navigation {
        top: auto;
        bottom: 0;
        transform: none;
        padding: 20px;
    }
    
    .person-back-link {
        position: fixed;
        left: 20px;
        top: 140px;
        bottom: auto;
        transform: none;
        
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
        border-radius: 20px;
    }
    
    .person-nav {
        top: 40%;
        transform: none;
    }
    
    .person-nav--prev {
        left: 20px;
    }
    
    .person-nav--next {
        right: 60px;
    }
    
    .person-nav img {
        width: 40px;
        height: 40px;
    }
    
    .person-indicator {
        position: fixed;
        left: auto;
        right: -15px;
        top: 160px;
        /* transform: translateX(-50%); */
        height: 20px;
        width: auto;
        
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }
    
    /* Info block - bottom slide-up panel */
    .person-info {
        position: fixed;
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        
        width: 100%;
        max-height: 75vh;
        height: 55vh;
        
        border-radius: 40px 40px 0 0;
        padding: 1.5rem;
        
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .person-info--collapsed {
        transform: translateY(calc(100% - 80px));
    }

    .person-info__header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .person-info__tabs {
        border-radius: 30px;
        padding: 3px;
        flex: 1;
    }

    .person-info__tab {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        border-radius: 30px;
    }

    .person-info__close-button {
        /* Reset button styles */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;

        /* Positioning & Layout */
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Visual */
        opacity: 0.4;
        transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Show close button with full opacity when panel is expanded */
    .person-info:not(.person-info--collapsed) .person-info__close-button {
        opacity: 1;
    }

    .person-info__close-button:hover {
        opacity: 1;
    }

    /* Keep button opacity at 0.4 when panel is collapsed, even on hover */
    .person-info--collapsed .person-info__close-button:hover {
        opacity: 0.4;
    }

    .person-info__close-button:focus {
        outline: 2px solid var(--color-green-primary);
        outline-offset: 2px;
    }

    .person-info__close-button:focus:not(:focus-visible) {
        outline: none;
    }

    /* Keep button opacity at 0.4 when panel is collapsed, even on focus */
    .person-info--collapsed .person-info__close-button:focus {
        opacity: 0.4;
    }

    .person-info__close-button img {
        width: 16px;
        height: 16px;
        display: block;
    }
    
    .person-info__name {
        font-size: 1.5rem;
    }
    
    .person-info__title {
        font-size: 1.25rem;
    }
    
    .person-info__text {
        font-size: 0.9rem;
    }
}


/* ==========================================================================
   ACCESSIBILITY PANEL (Font Size Controls for Visually Impaired)
   ========================================================================== */

.header__buttons {
    position: relative;
}

.accessibility-panel {
    /* Positioning - dropdown below the view button */
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1;

    /* Layout */
    display: flex;
    gap: 8px;
    padding: 8px;
    
    /* Visual */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    /* Initial State - Hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    /* Transitions */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.accessibility-panel--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.accessibility-panel__btn {
    /* Reset button styles */
    cursor: pointer;
    font-family: 'Kaspersky Sans Display', sans-serif;

    /* Box Model */
    width: 40px;
    height: 40px;
    padding: 0;

    /* Visual - Inactive state */
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 8px;
    color: #000;
    font-weight: 700;

    /* Transitions */
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Font sizes for buttons */
.accessibility-panel__btn[data-font-size="normal"] {
    font-size: 14px;
}

.accessibility-panel__btn[data-font-size="medium"] {
    font-size: 18px;
}

.accessibility-panel__btn[data-font-size="large"] {
    font-size: 22px;
}

/* Active state - inverted colors */
.accessibility-panel__btn--active {
    background-color: #000;
    color: #fff;
}

.accessibility-panel__btn:hover:not(.accessibility-panel__btn--active) {
    background-color: rgba(0, 0, 0, 0.1);
}

.accessibility-panel__btn:focus-visible {
    outline: 2px solid var(--color-green-primary);
    outline-offset: 2px;
}

.accessibility-panel__btn:focus:not(:focus-visible) {
    outline: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .accessibility-panel {
        right: -10px;
    }

    .accessibility-panel__btn {
        width: 36px;
        height: 36px;
    }

    .accessibility-panel__btn[data-font-size="normal"] {
        font-size: 12px;
    }

    .accessibility-panel__btn[data-font-size="medium"] {
        font-size: 16px;
    }

    .accessibility-panel__btn[data-font-size="large"] {
        font-size: 20px;
    }
}


/* ==========================================================================
   FONT SIZE CLASSES (Accessibility)
   ========================================================================== */

/* Apply font-size scaling to html element to affect all rem-based sizes */
html.font-size-normal {
    font-size: 100%;
}

html.font-size-medium {
    font-size: 105%;
}

html.font-size-large {
    font-size: 110%;
}


/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 40px;
    max-width: 400px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(41, 204, 177, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-banner__text {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
    text-align: center;
}

.cookie-banner__text a {
    color: var(--color-green-primary);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-banner__text a:hover {
    opacity: 0.8;
}

.cookie-banner__button {
    padding: 14px 28px;
    background-color: var(--color-green-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cookie-banner__button:hover {
    opacity: 0.9;
}

/* Mobile styles */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 5%;
        right: 0;
        max-width: 90%;
        border-radius: 16px 16px 0 0;
        padding: 24px 20px;
    }

    .cookie-banner__text {
        font-size: 0.9rem;
    }

    .cookie-banner__button {
        font-size: 0.9rem;
    }
}
