/* CSS Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; overflow: hidden; height: 100%; overscroll-behavior: none; }
body { margin: 0; overflow: hidden; height: 100%; overscroll-behavior: none; font-family: var(--font-golos); line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #0E0F12; }

/* базовые */
[data-section] {
    position: fixed;
    inset: 0;
    height: 100vh;
    will-change: transform, opacity;
    transition: transform 700ms cubic-bezier(.4,0,.2,1), opacity 400ms ease;
    overflow-anchor: none;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }
  
[data-section].is-prev  { transform: translateY(-100%); opacity: 1; z-index: 10;  pointer-events: auto; visibility: visible; }
[data-section].is-active{ transform: translateY(0%);    opacity: 1; z-index: 100; pointer-events: auto; visibility: visible; }
[data-section].is-next  { transform: translateY(100%);  opacity: 1; z-index: 10;  pointer-events: auto; visibility: visible; }

/* далёкие секции — невидимы и без анимаций */
[data-section].is-off { opacity: 0; pointer-events: none; visibility: hidden; }
[data-section].is-off-above { transform: translateY(-100%); }
[data-section].is-off-below { transform: translateY(100%);  }

[data-section].no-trans { transition: none !important; }

main { display: block; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { background-color: transparent; color: inherit; text-decoration: inherit; }
abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
button:disabled { cursor: not-allowed; }
fieldset { border: none; margin: 0; padding: 0; }
legend { padding: 0; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
textarea { resize: vertical; }
summary { display: list-item; }
[hidden] { display: none !important; }
/* Focus styles */
:focus-visible { outline: 2px solid #005fcc; outline-offset: 2px; }
/* Remove focus outline for mouse users */
:focus:not(:focus-visible) { outline: none; }
/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
/* Reduced motion */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

:root {
  --text-text-secondary: #bfbfbf;
  --text-text-accent: #dabfa1;
  --text-text-primary: white;
  --text-text-tertiary: #737373;
  --text-text-on-primary: #121212;
  --Native-subtitle_text_color: #707579;

  --surface-container-low: #191919;

  --icon-icon-primary: white;
  --icon-icon-accent: #dabfa1;
  --icon-icon-secondary: #BFBFBF;

  --surface-container-low: #191919;

  /* --- Fonts --- */
  --font-golos: "Golos Text", sans-serif;
  --font-titan: "Titan One", sans-serif;
  --font-fjalla: "Fjalla One", sans-serif;

  --controls-radius: 12px;
  --controls-secondary: #3E3E3E;
  --button-primary-gradient-1: linear-gradient(88deg, #F5DEB3 0.57%, #DABFA1 50.78%, #F5DEB3 100%);
}
.btn {
    display: inline-flex;
    flex-shrink: 0;
    padding: 12px 32px;
    border-radius: var(--controls-radius, 12px);
    border: none;
    color: var(--text-text-primary, #FFF);
    text-align: center;
    font-family: "Golos Text";
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
}
.btn_primary {
    background: var(--button-primary-gradient-1, linear-gradient(88deg, #F5DEB3 0.57%, #DABFA1 50.78%, #F5DEB3 100%));
    color: var(--text-text-on-primary, #121212);
}
.btn_secondary {
    background: var(--controls-secondary, #3E3E3E);
    color: var(--text-text-primary, #FFF);
}

/* Main container */
.your-way {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 1000;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* Step items */
.waytext {
    color: var(--text-text-primary, #FFF);
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.28px;
}
.starting-page {
    color: var(--text-text-accent, #DABFA1);
    font-weight: 500;
}
.choose-fraction { /* Стили для выбора фракции */ }
.choose-traits { /* Стили для выбора черт */ }
.mint-sbt { color: var(--text-text-tertiary, #737373); }

/* Road lines */
.roadline {
    position: relative;
    width: 48px;
    height: 1px;
    background-color: var(--text-text-primary, #FFF);
}
    .roadline::before {
        content: '';
        position: absolute;
        top: -2px;
        right: 0;
        width: 5px;
        height: 5px;
        transform: rotate(45deg);
        background-color: var(--text-text-primary, #FFF);
    }
.roadline.active {
    background-color: var(--icon-icon-accent, #DABFA1);
}
    .roadline.active::before {
        background-color: var(--icon-icon-accent, #DABFA1);
    }
.roadline.disabled {
    background-color: var(--text-text-tertiary, #737373);
}
    .roadline.disabled::before {
        background-color: var(--text-text-tertiary, #737373);
    }

/* Title screen */
.title-screen {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 90px 32px 0 148px;
}
    .title-blur_1 {
        position: absolute;
        top: -207px;
        right: -481px;
        z-index: 5;
        width: 1038px;
        height: 1005px;
        flex-shrink: 0;
        border-radius: 1038px;
        opacity: 0.5;
        background: #323232;
        mix-blend-mode: multiply;
        filter: blur(278.025146484375px);
    }
    .title-screen__header {
        position: relative;
    }
        .title-craft {
            display: inline-block;
            font-size: 90px;
            letter-spacing: 0.01em;
            line-height: 100%;
            text-transform: uppercase;
            font-family: var(--font-fjalla);
            color: #dabfa1;
            text-align: center;
            text-shadow: -21px 81px 63.8px rgba(0, 0, 0, 0.8);
        }
    .title-screen__secondary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
        .title-your {
            position: relative;
            z-index: 2;
            text-align: center;
            text-shadow: -21px 81px 63.8px rgba(0, 0, 0, 0.80);
            -webkit-text-stroke-width: 4px;
            -webkit-text-stroke-color: #DABFA1;
            font-family: var(--font-fjalla);
            font-size: 236px;
            font-weight: 400;
            line-height: 251px;
            letter-spacing: -7.08px;
            text-transform: uppercase;
        }
        .title-dragon {
            position: relative;
            z-index: 4;
            display: inline-block;
            font-size: 236px;
            letter-spacing: -0.03em;
            line-height: 251px;
            text-transform: uppercase;
            font-family: var(--font-fjalla);
            color: #fff;
            text-align: center;
            text-shadow: -21px 81px 63.8px rgba(0, 0, 0, 0.8);
        }
    .title-screen__footer {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0 0 148px 0;
    }
        .title-text {
            width: 315px;
            font-size: 16px;
            line-height: 160%;
            font-weight: 500;
            color: #bfbfbf;
        }
        .title-with-hot {
            font-size: 90px;
            letter-spacing: 0.01em;
            line-height: 1;
            text-transform: uppercase;
            font-family: var(--font-fjalla);
            color: #fff;
            text-shadow: -21px 81px 63.8px rgba(0, 0, 0, 0.8);
        }
            .title-with-hot span { color: #dabfa1; }
    .title-screen__btns {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .title-img-dragon {
        position: absolute;
        bottom: -214px;
        left: 50%;
        z-index: 2;
        transform: translateX(-50%);
        width: 802px;
    }
    
    /* Специальное правило для дракона с анимацией - сохраняем оригинальное позиционирование */
    .title-img-dragon.animation-on {
        transform: translateX(-50%) translateY(var(--anim-translate-y)) scale(var(--anim-scale)) rotate(var(--anim-rotate));
    }
        .title-img-dragon img {
            position: relative;
            z-index: 3;
            width: 100%;
        }
        .title-img-dragon::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 906px;
            height: 130px;
            flex-shrink: 0;
            border-radius: 906px;
            opacity: 0.2;
            background: #FFF;
            filter: blur(64px);
            z-index: 2;
        }
        .title-img-dragon::before {
            content: '';
            position: absolute;
            bottom: -300px;
            left: 50%;
            transform: translateX(-50%);
            width: 602px;
            height: 449px;
            flex-shrink: 0;
            background-image: url('img/blue-dragon-shadow.png');
            background-repeat: no-repeat;
            background-size: 100% auto;
            background-position: 50%;
            opacity: 0.3;
            mix-blend-mode: overlay;
            filter: blur(40px);
        }

.quote {
    position: relative;
    width: 1392px;
    max-width: calc(100% - 48px);
    margin: 300px auto 80px auto;
}
    /* Прогресс-скролл */
    .quote-scroll {
        --qprog: 0; /* 0..1 */
        position: absolute;
        top: 20px;
        right: 32px;
        width: 8px;
        height: 320px;
        background-color: rgba(153, 153, 153, 0.10);
        border-radius: 4px;
        overflow: hidden;
    }
    .quote-scroll::after {
        content: "";
        position: absolute;
        top: 0;            /* якорь сверху */
        left: 0;
        width: 8px;
        height: calc(var(--qprog) * 100%);  /* растём вниз */
        background-color: #F5DEB3;
        border-radius: 4px;
        transition: height 200ms cubic-bezier(0.4,0,0.2,1);
    }
    .quote__text {
        position: relative;
        z-index: 1;
        width: 800px;
        margin: 0 auto 128px auto;
        padding: 64px 0 0 0;
        font-size: 52px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        word-break: normal;
        overflow-wrap: normal;
    }
    .quote__text .word {
        white-space: nowrap;
        display: inline-block;
    }
    /* Анимация закрашивания букв */
    .quote__text .letter {
        display: inline-block;
        position: relative;
        color: var(--Native-subtitle_text_color, #707579);
        transition: color 0.3s ease;
        overflow: hidden;
    }
    
    .quote__text .letter.animated {
        color: white;
    }
    
/* Простое появление без движения */
.animation-on[data-animation="fade-in"] {
    --anim-translate-x: 0px;
    --anim-translate-y: 0px;
    --anim-scale: 1;
    --anim-rotate: 0deg;
    --anim-blur: 0px;
}

/* Анимация появления для quote__text (если не указан data-animation) */
.quote__text.animation-on {
    opacity: 0;
    transition: opacity var(--animation-duration, 800ms) cubic-bezier(0.4, 0, 0.2, 1);
}

.quote__text.animation-on.animate-in {
    opacity: 1;
}

        .quote__img-left {
            position: absolute;
            top: 0;
            left: 70px;
            z-index: 2;
            width: 170.3px;
            height: 329.613px;
            flex-shrink: 0;
            aspect-ratio: 170.30/329.61;
        }
        .quote__img-right {
            position: absolute;
            top: 0;
            right: 70px;
            z-index: 2;
            width: 170px;
            height: 329.032px;
            aspect-ratio: 170/329.032;
            opacity: 0;
            transform: translateY(30px);
            transition:
              opacity var(--animation-duration, 600ms) cubic-bezier(0.4,0,0.2,1),
              transform var(--animation-duration, 600ms) cubic-bezier(0.4,0,0.2,1);
            will-change: opacity, transform;
        }
        .quote .quote__img-right.animation-on.animate-in:not(.progress-in) {
            opacity: 0;
            transform: translateY(30px);
        }
          
        /* Видимость ТОЛЬКО по нашему прогрессу */
        .quote .quote__img-right.progress-in {
            opacity: 1;
            transform: translateY(0);
        }

    .quote__ceo {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        position: relative;
        width: 864px;
        margin: 0 auto;
        color: var(--text-text-accent, #DABFA1);
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
    }
        .quote__ceo::before {
            content: '';
            width: 51px;
            height: 2px;
            border-radius: 2px;
            background: var(--icon-icon-secondary, #BFBFBF);
        }


.how-it-works {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1392px;
    max-width: calc(100% - 156px);
    margin: 0 auto 100px auto;
    padding: 80px 0;
}
    .how-it-works__title {
        font-size: 172px;
        letter-spacing: -0.03em;
        line-height: 172px;
        text-transform: uppercase;
        font-family: 'Fjalla One';
        color: #fff;
    }
        .how-it-works__title span {
            display: block;
            -webkit-text-stroke-width: 4px;
            -webkit-text-stroke-color: #DABFA1;
            color: #0E0F12;
        }
        .how-it-works__items {
            display: flex;
            flex-direction: column;
            gap: 36px;
            position: relative;
            width: 604px;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
        .how-it-works__items::after {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 1;
            content: "";
            width: 604px;
            height: 190px;
            margin: 0;
            padding: 22px 46px;
            box-shadow: -21px 81px 63.8px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(60px);
            border-radius: 16px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(153, 153, 153, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .how-it-works__item {
            display: flex;
            align-items: center;
            gap: 32px;
            position: relative;
            z-index: 2;
            width: 375px;
            margin: 0 0 0 160px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
            .how-it-works__item.active {
                width: 604px;
                margin: 0;
                padding: 22px 46px;
            }
            .how-it-works__item-img {
                display: none;
                position: absolute;
            }
            .how-it-works__item.active .how-it-works__item-img {
                display: block;
            }
            .how-it-works__item-img_1 {
                top: -44px;
                left: 40px;
                width: 84px;
            }
            .how-it-works__item-img_2 {
                top: -52px;
                left: -64px;
                width: 254px;
            }
            .how-it-works__item-img_3 {
                top: -28px;
                left: 0;
                width: 134px;
            }
            .how-it-works__item-count {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;
                width: 80px;
                height: 80px;
                filter: drop-shadow(-21px 81px 63.8px rgba(0, 0, 0, 0.8));
                border-radius: 50%;
                border: 4px solid #dabfa1;
                font-size: 32px;
                letter-spacing: -0.03em;
                line-height: 60px;
                text-transform: uppercase;
                font-family: 'Fjalla One';
                color: transparent;
                text-align: center;
                -webkit-text-stroke: 2px #dabfa1;
                paint-order: stroke fill;
            }
            .how-it-works__item-content {
                width: 100%;
            }
            .how-it-works__item-title {
                margin: 0 0 8px 0;
                color: #FFF;
                font-family: "Fjalla One";
                font-size: 32px;
                font-weight: 400;
                line-height: normal;
                letter-spacing: -0.96px;
                text-transform: uppercase;
            }
            .how-it-works__item-text {
                margin: 0 0 20px 0;
                color: var(--text-text-secondary, #BFBFBF);
                font-size: 16px;
                font-weight: 500;
                line-height: 160%;
            }
            .how-it-works__item_1 .how-it-works__item-text {
                max-width: 260px;
            }
            .how-it-works__item_3 .how-it-works__item-text {
                max-width: 260px;
            }
            .how-it-works__item-link {
                color: var(--text-text-accent, #DABFA1);
                font-size: 16px;
                font-weight: 500;
                line-height: 160%;
            }

        /* ВКЛ слайдера: можно добавить/удалить классом, но ниже JS сам добавит */
        .how-it-works__items.slider {
            position: relative;
        }
        
        /* Только движение/слои. Сохраняем ваши width/margin, особенно margin-left:160px у неактивных */
        .how-it-works__items.slider .how-it-works__item {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            will-change: transform, opacity;
        }
        
        .how-it-works__items.slider .how-it-works__item[aria-hidden="true"] {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }



.get-some {
    padding: 300px 0;
    text-align: center;
}
    .get-some h2 {
        font-size: 112px;
        letter-spacing: -0.03em;
        line-height: 121.97px;
        text-transform: uppercase;
        font-family: var(--font-fjalla);
        color: #fff;
    }
    .get-some h3 {
        margin: -64px 0 0 0;
        font-size: 148px;
        letter-spacing: -0.03em;
        line-height: 168px;
        text-transform: uppercase;
        font-family: var(--font-fjalla);
        color: transparent;
        -webkit-text-stroke: 4px #dabfa1;
        paint-order: stroke fill;
        color: #0E0F12;
    }


.faq {
    z-index: 10;
    width: 1440px;
    max-width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 80px 76px 80px 148px;
    overflow-anchor: none;
}
    /* Внутреннее окно прокрутки FAQ */
    .faq__viewport{
        display: flex;
        justify-content: space-between;
        height: calc(100vh - 160px);
        max-height: calc(100vh - 160px);
        padding-right: 2px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
        .faq__viewport::-webkit-scrollbar{ width:0; height:0; display:none; }
    .faq::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 12;
        transform: translate(-50%,-50%) translateZ(0);
        width: 1409px;
        height: 438px;
        flex-shrink: 0;
        background-color: #F5DEB3;
        opacity: 0.15;
        filter: blur(300px);
        -webkit-filter: blur(300px);
        will-change: filter;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .faq__title {
        position: relative;
        z-index: 13;
        margin-top: 14px;
        font-size: 168px;
        letter-spacing: -0.03em;
        line-height: 168px;
        text-transform: uppercase;
        font-family: var(--font-fjalla);
        color: transparent;
        -webkit-text-stroke: 4px #dabfa1;
        paint-order: stroke fill;
    }
    .faq__items {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 560px;
        position: relative;
        z-index: 13;
        overflow-anchor: none;
    }
    .faq__item {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        background: var(--surface-container-low, #191919);
        backdrop-filter: blur(16px);
        transition: all 0.3s ease;
        overflow-anchor: none;
    }
    
    .faq__item:hover { /* Стили при наведении */ }
    .faq__item.open { /* Стили для открытого состояния */ }
    
    .faq__item-title {
        position: relative;
        padding: 20px 84px 20px 24px;
        color: #FFF;
        font-family: var(--font-fjalla);
        font-size: 32px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.96px;
        text-transform: uppercase;
        cursor: pointer;
        transition: color 0.3s ease;
        border-radius: 8px;
    }
    
    .faq__item.open .faq__item-title, .faq__item-title:hover {
        color: var(--text-text-accent, #DABFA1);
    }
    
    .faq__item-text {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        height: 0;
        opacity: 0;
    }
        .faq__item-text_padding { padding: 0 84px 20px 24px; }
    
    .faq__item.open .faq__item-text { opacity: 1; }
    
    .faq__item-text p {
        margin: 0 0 16px 0;
        font-size: 16px;
        color: var(--text-text-secondary, #BFBFBF);
        font-family: var(--font-golos);
        font-weight: 400;
        line-height: 140%;
        letter-spacing: -0.48px;
    }
    .faq__item-text p:last-child { margin-bottom: 0; }
    
    .faq__item-close {
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translateY(-50%);
        width: 1%;
        height: 14px;
        cursor: pointer;
        transition: transform 0.3s ease;
        border-radius: 50%;
    }
    
    .faq__item.open .faq__item-close {
        display: block;
    }
    
    .faq__item-close::before,
    .faq__item-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 2px;
        background-color: var(--icon-icon-secondary, #DABFA1);
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease;
    }
    
    .faq__item-close::before { transform: translate(-50%, -50%) rotate(90deg); } 
    .faq__item-close::after { transform: translate(-50%, -50%) rotate(0deg); }
    .faq__item.open .faq__item-close::before { transform: translate(-50%, -50%) rotate(180deg); }
    .faq__item.open .faq__item-close::after { transform: translate(-50%, -50%) rotate(0); }
    .faq__item-close:hover::before,
    .faq__item-close:hover::after {
        background-color: var(--text-text-primary, #FFF);
    }



.footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    z-index: 1;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 76px 132px 148px;
}
    .footer::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -40%;
        z-index: 3;
        filter: blur(500px);
        border-radius: 50%;
        background-color: #323232;
        width: 1038px;
        height: 1005px;
        opacity: 0.6;
        mix-blend-mode: multiply;
    }
    .footer__left {
        position: relative;
        z-index: 2;
    }
        .footer__left-title {
            margin: 0;
            color: #FFF;
            text-align: center;
            font-family: var(--font-fjalla);
            font-size: 90px;
            font-weight: 400;
            line-height: 100%;
            letter-spacing: 0.9px;
            text-transform: uppercase;
        }
            .footer__left-title span {
                color: var(--text-text-accent, #DABFA1);
            }
        .footer__left-text {
            text-align: center;
            -webkit-text-stroke-width: 4px;
            -webkit-text-stroke-color: #DABFA1;
            font-family: var(--font-fjalla);
            font-size: 236px;
            font-weight: 400;
            line-height: 251px;
            letter-spacing: -7.08px;
            text-transform: uppercase;
        }

    .footer__right {
        position: relative;
        z-index: 2;
    }
        .footer__right-img {
            width: 185px;
            margin: 100px 0 0 0;
        }
        .footer__right-title {
            margin: -16px 0 24px 0;
            color: #FFF;
            font-family: var(--font-fjalla);
            font-size: 90px;
            font-weight: 400;
            line-height: 120%;
            letter-spacing: 0.9px;
            text-transform: uppercase;
        }
            .footer__right-title span {
                color: var(--text-text-accent, #DABFA1);
            }
         .footer__right-text {
             margin: 0 0 40px 0;
             color: #FFF;
             font-family: var(--font-golos);
             font-size: 16px;
             font-weight: 500;
             line-height: 160%;
         }

/* ===== АНИМАЦИИ ПОЯВЛЕНИЯ ЭЛЕМЕНТОВ ===== */

/* Базовые стили для анимируемых элементов */
.animation-on {
    opacity: 0;
    --anim-translate-x: 0px;
    --anim-translate-y: 30px; /* fade-up по умолчанию */
    --anim-scale: 1;
    --anim-rotate: 0deg;
    --anim-blur: 0px;
    transform: translateX(var(--anim-translate-x)) translateY(var(--anim-translate-y)) scale(var(--anim-scale)) rotate(var(--anim-rotate));
    filter: blur(var(--anim-blur));
    transition: opacity var(--animation-duration, 600ms) cubic-bezier(0.4, 0, 0.2, 1),
                transform var(--animation-duration, 600ms) cubic-bezier(0.4, 0, 0.2, 1),
                filter var(--animation-duration, 600ms) cubic-bezier(0.4, 0, 0.2, 1);
}

.animation-on.animation-ready {
    opacity: 0;
    --anim-translate-y: 30px; /* fade-up по умолчанию */
}

.animation-on.animate-in {
    opacity: 1;
    --anim-translate-x: 0px;
    --anim-translate-y: 0px;
    --anim-scale: 1;
    --anim-rotate: 0deg;
    --anim-blur: 0px;
}

/* Варианты анимаций - fade-up уже задан по умолчанию выше */
.animation-on[data-animation="fade-up"] {
    --anim-translate-y: 30px;
}

.animation-on[data-animation="fade-down"] {
    --anim-translate-y: -30px;
}

.animation-on[data-animation="fade-left"] {
    --anim-translate-x: 30px;
}

.animation-on[data-animation="fade-right"] {
    --anim-translate-x: -30px;
}

.animation-on[data-animation="scale-up"] {
    --anim-scale: 0.9;
}

.animation-on[data-animation="scale-down"] {
    --anim-scale: 1.1;
}

/* Анимация для текста с задержкой между элементами */
.animation-on[data-stagger] .animation-on {
    transition-delay: calc(var(--stagger-delay, 100ms) * var(--stagger-index, 0));
}

/* Специальные анимации */
.animation-on[data-animation="slide-up"] {
    --anim-translate-y: 100%;
}

.animation-on[data-animation="slide-down"] {
    --anim-translate-y: -100%;
}

.animation-on[data-animation="slide-left"] {
    --anim-translate-x: 100%;
}

.animation-on[data-animation="slide-right"] {
    --anim-translate-x: -100%;
}

/* Анимация появления с поворотом */
.animation-on[data-animation="rotate-in"] {
    --anim-rotate: -10deg;
    --anim-scale: 0.8;
}

/* Анимация с размытием */
.animation-on[data-animation="blur-in"] {
    --anim-blur: 10px;
    --anim-scale: 1.1;
}

.animation-on[data-animation="blur-in"].animate-in {
    --anim-blur: 0px;
    --anim-scale: 1;
}