/* ==========================================================================
   1. ПЕРЕМЕННЫЕ И БАЗОВЫЕ НАСТРОЙКИ
   ========================================================================== */
:root {
    --pw-gold: #e5c158;
    --pw-gold-light: #ffeba3;
    --pw-gold-dark: #a67c1e;
    --pw-gold-muted: rgba(229, 193, 88, 0.35);
    --pw-border-soft: rgba(229, 193, 88, 0.2);
    --pw-bg-dark: #0b0c10;
    --pw-bg-card: #13151f;
}

body {
    background-color: #0d0e12;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f1f1f1;
    overflow-x: hidden;
}

/* ==========================================================================
   2. ПЛАВАЮЩИЙ САЙДБАР ГОЛОСОВАНИЯ (СЛЕВА)
   ========================================================================== */
.pw-floating-vote {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
}

.pw-vote-bubble {
    pointer-events: auto;
    position: relative;
    border-radius: 8px;
    background: rgba(11, 12, 16, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 193, 88, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 12px rgba(229, 193, 88, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pw-vote-bubble.float-1 { animation: floatBob 4s ease-in-out infinite alternate; }
.pw-vote-bubble.float-2 { animation: floatBob 4.6s ease-in-out infinite alternate 0.8s; }
.pw-vote-bubble.float-3 { animation: floatBob 4.2s ease-in-out infinite alternate 1.6s; }

@keyframes floatBob {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.pw-vote-bubble:hover {
    transform: scale(1.08) translateX(6px) !important;
    border-color: var(--pw-gold-light);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9), 0 0 20px rgba(229, 193, 88, 0.5);
}

.pw-vote-bubble-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    text-decoration: none;
    color: #f1f1f1;
}

.pw-vote-logo-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pw-vote-icon {
    color: var(--pw-gold);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(229, 193, 88, 0.6));
}

.pw-vote-name {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.pw-coin-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(229, 193, 88, 0.12);
    border: 1px solid rgba(229, 193, 88, 0.35);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pw-gold-light);
}

.pw-coin-glow {
    color: #ffd700;
    font-size: 0.82rem;
    animation: coinPulse 2.5s ease-in-out infinite alternate;
}

@keyframes coinPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px #ffd700); }
    100% { transform: scale(1.2) rotate(10deg); filter: drop-shadow(0 0 8px #ffeba3); }
}

@media (max-width: 991px) {
    .pw-floating-vote { display: none; }
}

/* ==========================================================================
   3. МНОГОСЛОЙНЫЙ ФОН
   ========================================================================== */
.pw-bg-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.pw-bg-static {
    position: absolute;
    inset: 0;
    background: url('bg-night-city-stars-sky.jpg') center/cover no-repeat;
    filter: brightness(0.4) contrast(1.1);
}

.pw-bg-nebula {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background:
            radial-gradient(circle at 30% 40%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(229, 193, 88, 0.08) 0%, transparent 45%),
            radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    mix-blend-mode: screen;
    animation: nebulaMove 35s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes nebulaMove {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-4%, 2%) rotate(2deg) scale(1.05); }
    100% { transform: translate(2%, -3%) rotate(-2deg) scale(1); }
}

.pw-bg-particles {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.7), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(229, 193, 88, 0.8), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    opacity: 0.5;
    animation: starsDrift 60s linear infinite;
    mix-blend-mode: screen;
}

@keyframes starsDrift {
    0% { background-position: 0 0; }
    100% { background-position: 250px -500px; }
}

.pw-bg-vignette {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at center, transparent 40%, rgba(11, 12, 16, 0.85) 100%),
            linear-gradient(to bottom, rgba(11, 12, 16, 0.4) 0%, transparent 20%, rgba(11, 12, 16, 0.85) 100%);
}

/* ==========================================================================
   4. НАВИГАЦИЯ (NAVBAR)
   ========================================================================== */
.pw-navbar {
    background: rgba(11, 12, 16, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, rgba(229, 193, 88, 0.5) 30%, rgba(229, 193, 88, 0.5) 70%, transparent 100%) 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(229, 193, 88, 0.1);
    padding: 0.65rem 0;
}

.pw-brand-emblem {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
}

.pw-navbar-logo {
    width: 100%; height: 100%; object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(229, 193, 88, 0.45));
    transition: transform 0.3s ease;
}

.navbar-brand:hover .pw-navbar-logo { transform: scale(1.06); }

.pw-navbar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem; font-weight: 700; letter-spacing: 2px; line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 0%, var(--pw-gold-light) 40%, var(--pw-gold) 75%, var(--pw-gold-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.9));
}

.pw-navbar-subtitle {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4); text-transform: uppercase;
}

.pw-nav-link {
    font-size: 0.84rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.5rem 0.9rem !important; position: relative;
    transition: color 0.25s ease;
}

.pw-nav-link:hover, .pw-nav-link.active { color: var(--pw-gold) !important; }

.pw-nav-donate { color: var(--pw-gold-light) !important; }
.pw-nav-donate i { color: var(--pw-gold); filter: drop-shadow(0 0 4px rgba(229, 193, 88, 0.5)); }

/* ==========================================================================
   ВЫПАДАЮЩЕЕ МЕНЮ НАВИГАЦИИ (ЦЕНТРИРОВАННОЕ И СБАЛАНСИРОВАННОЕ)
   ========================================================================== */

/* Контейнер меню */
.pw-dropdown-menu {
    background: linear-gradient(180deg, #131620 0%, #090a0f 100%) !important;
    border: 1px solid rgba(229, 193, 88, 0.35) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    min-width: 290px;
    margin-top: 10px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(229, 193, 88, 0.12),
    inset 0 1px 0 rgba(255, 235, 163, 0.25) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    list-style: none;
}

/* Симметричный верхний указатель-ромб */
.pw-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 28px;
    width: 9px;
    height: 9px;
    background: #131620;
    border-left: 1px solid rgba(229, 193, 88, 0.4);
    border-top: 1px solid rgba(229, 193, 88, 0.4);
    transform: rotate(45deg);
}

/* Разделитель между пунктами */
.pw-dropdown-divider {
    border-color: rgba(229, 193, 88, 0.12) !important;
    margin: 6px 4px !important;
}

/* Элемент списка (симметричные отступы и центровка) */
.pw-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px !important;
    border-radius: 6px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    position: relative;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
}

/* Иконка элемента */
.pw-drop-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 193, 88, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pw-gold);
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

/* Текстовый блок (выровнен по левому краю внутри строки) */
.pw-drop-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
}

.pw-drop-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #e6e6e6;
    letter-spacing: 0.4px;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.pw-drop-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.2;
    margin-top: 2px;
    transition: color 0.2s ease;
}

/* ==========================================================================
   СОСТОЯНИЕ ПРИ НАВЕДЕНИИ (HOVER / FOCUS)
   ========================================================================== */
.pw-dropdown-item:hover,
.pw-dropdown-item:focus {
    background: rgba(229, 193, 88, 0.08) !important;
    border-color: rgba(229, 193, 88, 0.35) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pw-dropdown-item:hover .pw-drop-icon,
.pw-dropdown-item:focus .pw-drop-icon {
    background: var(--pw-gold);
    color: #0b0c10;
    border-color: var(--pw-gold-light);
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.6);
}

.pw-dropdown-item:hover .pw-drop-title,
.pw-dropdown-item:focus .pw-drop-title {
    color: var(--pw-gold-light);
    text-shadow: 0 0 6px rgba(255, 235, 163, 0.5);
}

.pw-dropdown-item:hover .pw-drop-desc,
.pw-dropdown-item:focus .pw-drop-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   АКТИВНЫЙ ВЫБРАННЫЙ ЭЛЕМЕНТ (ACTIVE)
   ========================================================================== */
.pw-dropdown-item.active,
.pw-dropdown-item:active {
    background: linear-gradient(90deg, rgba(229, 193, 88, 0.18) 0%, rgba(229, 193, 88, 0.04) 100%) !important;
    border: 1px solid rgba(229, 193, 88, 0.5) !important;
    box-shadow: inset 0 0 14px rgba(229, 193, 88, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

.pw-dropdown-item.active .pw-drop-icon {
    background: linear-gradient(135deg, var(--pw-gold-light) 0%, var(--pw-gold) 100%);
    border-color: #ffeaa7;
    color: #0b0c10;
    box-shadow: 0 0 12px rgba(229, 193, 88, 0.7);
}

.pw-dropdown-item.active .pw-drop-title {
    color: var(--pw-gold-light);
    font-weight: 700;
}

.pw-dropdown-item.active .pw-drop-desc {
    color: rgba(255, 235, 163, 0.75);
}

/* Симметричный золотой маркер справа */
.pw-dropdown-item.active::after {
    content: '◆';
    position: static;
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--pw-gold-light);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.9));
    flex-shrink: 0;
}
/* ==========================================================================
   5. ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ И КНОПКИ
   ========================================================================== */
.pw-epic-title {
    font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; margin: 0;
    background: linear-gradient(to bottom, #ffffff 0%, var(--pw-gold-light) 35%, var(--pw-gold) 65%, var(--pw-gold-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 1));
}

.pw-epic-subtitle {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45); text-transform: uppercase; margin-top: 4px;
}

.pw-subtitle-line {
    display: inline-block; width: 25px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--pw-border-soft), transparent);
}

.pw-divider-epic {
    display: flex; align-items: center; justify-content: center; width: 100%; opacity: 0.8;
}
.pw-divider-line {
    flex-grow: 1; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(229, 193, 88, 0.4) 50%, var(--pw-gold-dark) 100%);
}
.pw-divider-line:last-child {
    background: linear-gradient(90deg, var(--pw-gold-dark) 0%, rgba(229, 193, 88, 0.4) 50%, transparent 100%);
}
.pw-divider-center { padding: 0 16px; display: flex; align-items: center; justify-content: center; }
.pw-divider-diamond {
    width: 12px; height: 12px;
    background: linear-gradient(135deg, var(--pw-gold-light) 0%, var(--pw-gold) 50%, var(--pw-gold-dark) 100%);
    transform: rotate(45deg); box-shadow: 0 0 8px rgba(229, 193, 88, 0.6); border: 1px solid #fff7d6;
}

.pw-btn-gold {
    background: linear-gradient(to bottom, var(--pw-gold) 0%, var(--pw-gold-dark) 100%);
    color: #111 !important; border: none; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; box-shadow: 0 4px 10px rgba(229, 193, 88, 0.2);
    transition: all 0.3s ease;
}
.pw-btn-gold:hover {
    background: linear-gradient(to bottom, var(--pw-gold-light) 0%, var(--pw-gold) 100%);
    transform: translateY(-2px); box-shadow: 0 6px 15px rgba(229, 193, 88, 0.4);
}

.pw-btn-outline-gold {
    background: rgba(229, 193, 88, 0.05); color: var(--pw-gold) !important;
    border: 1px solid var(--pw-gold-dark); font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; transition: all 0.3s ease;
}
.pw-btn-outline-gold:hover {
    background: rgba(229, 193, 88, 0.15); color: #fff !important;
    border-color: var(--pw-gold); transform: translateY(-2px);
}

/* ==========================================================================
   6. ПАРТНЕРЫ И МОДАЛЬНОЕ ОКНО
   ========================================================================== */
.pw-partner-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 16px 10px; background: rgba(14, 16, 21, 0.7);
    border: 1px solid var(--pw-border-soft); border-radius: 8px; text-decoration: none; transition: all 0.3s ease;
}
.pw-partner-card:hover {
    background: rgba(229, 193, 88, 0.08); border-color: var(--pw-gold);
    transform: translateY(-4px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}
.pw-partner-name { color: #f1f1f1; font-size: 0.85rem; font-weight: 600; }
.pw-partner-tag { color: rgba(255, 255, 255, 0.4); font-size: 0.7rem; }

.pw-steps-container { position: relative; padding-left: 8px; }
.pw-steps-container::before {
    content: ''; position: absolute; left: 33px; top: 15px; bottom: 35px; width: 2px;
    background: linear-gradient(to bottom, var(--pw-gold) 0%, rgba(229,193,88,0.2) 60%, transparent 100%);
}
.pw-step-item { display: flex; gap: 22px; margin-bottom: 35px; position: relative; }
.pw-step-item.last-step { margin-bottom: 0; }
.pw-step-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #1f1a10 0%, #0d0e12 100%);
    border: 2px solid var(--pw-gold-dark); display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--pw-gold); z-index: 2; flex-shrink: 0;
}
.pw-step-title { color: var(--pw-gold); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.pw-step-desc { color: rgba(255, 255, 255, 0.65); font-size: 0.88rem; line-height: 1.5; margin-bottom: 12px; }

.pw-modal-fantasy .modal-content {
    background-color: var(--pw-bg-dark); border-radius: 8px; border: 1px solid transparent !important;
    background:
            linear-gradient(var(--pw-bg-dark), var(--pw-bg-dark)) padding-box,
            linear-gradient(135deg, rgba(229,193,88,0.7) 0%, rgba(229,193,88,0.1) 50%, rgba(229,193,88,0.7) 100%) border-box;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(229, 193, 88, 0.15);
}
.modal-backdrop.show { backdrop-filter: blur(6px); background-color: rgba(5, 6, 8, 0.85); }
.pw-modal-close {
    position: absolute; top: 18px; right: 18px; filter: invert(1) grayscale(100%) brightness(150%);
    opacity: 0.6; transition: all 0.2s ease;
}
.pw-modal-close:hover { opacity: 1; transform: rotate(90deg); }
/* ==========================================================================
   ОПТИМИЗАЦИЯ ПОЗИЦИОНИРОВАНИЯ БОКОВЫХ САЙДБАРОВ
   ========================================================================== */
@media (max-width: 1400px) {
    .pw-floating-vote {
        left: 8px;
        transform: translateY(-50%) scale(0.9);
        transform-origin: left center;
    }
    .pw-floating-quick {
        right: 8px;
        transform: translateY(-50%) scale(0.9);
        transform-origin: right center;
    }
}

@media (max-width: 1200px) {
    .pw-floating-vote,
    .pw-floating-quick {
        display: none !important; /* Отключение сайдбаров на узких экранах для чистоты чтения */
    }
}

/* Стили модального окна деталей платежа */
.pw-pay-modal-steps {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 193, 88, 0.2);
}
/* ==========================================================================
   ПРЕЛОАДЕР (SMOOTH GOLD PRELOADER)
   ========================================================================== */
.pw-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #08090c;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

/* Состояние после полной загрузки страницы */
.pw-preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pw-preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Контейнер эмблемы */
.pw-preloader-emblem {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pw-preloader-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(229, 193, 88, 0.7));
    animation: loaderPulse 1.8s ease-in-out infinite alternate;
    z-index: 2;
}

/* Вращающееся золотое руническое кольцо */
.pw-preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(229, 193, 88, 0.4);
    border-top-color: var(--pw-gold-light);
    border-right-color: var(--pw-gold);
    animation: loaderSpin 2.5s linear infinite;
    z-index: 1;
}

/* Мягкое фоновое свечение */
.pw-preloader-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 193, 88, 0.25) 0%, transparent 70%);
    filter: blur(6px);
    animation: loaderGlowPulse 1.8s ease-in-out infinite alternate;
}

/* Название проекта */
.pw-preloader-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(to bottom, #ffffff 0%, var(--pw-gold-light) 50%, var(--pw-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Полоса прогресса */
.pw-preloader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.pw-preloader-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--pw-gold-light), var(--pw-gold), transparent);
    animation: loaderProgress 1.4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(229, 193, 88, 0.8);
}

.pw-preloader-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* Ключевые кадры */
@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0% { transform: scale(0.94); filter: drop-shadow(0 0 6px rgba(229, 193, 88, 0.4)); }
    100% { transform: scale(1.04); filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.9)); }
}

@keyframes loaderGlowPulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 0.9; transform: scale(1.15); }
}

@keyframes loaderProgress {
    0% { left: -50%; width: 30%; }
    50% { width: 60%; }
    100% { left: 100%; width: 30%; }
}