:root {
    /* Основные цвета */
    --color-background: #14213D; /* Глубокий ночной синий */
    --color-text: #E2E2E2; /* Мягкий светлый для текста */
    --color-heading: #C9A227; /* Золотистый для заголовков - напоминает старинные фолианты */
    --color-link-hover: rgba(201, 162, 39, 0.8); /* Золотистый при наведении, но с прозрачностью */

    /* Акцентные цвета */
    --color-accent-1: #455A8C; /* Глубокий синий с фиолетовым оттенком - напоминает сумерки */
    --color-accent-2: #1F3452; /* Более насыщенный тёмно-синий для контраста */
    --color-accent-3: #5D3A72; /* Пурпурно-фиолетовый для мистического ощущения */

    /* Фоновые цвета */
    --color-background-dark: #0D1526; /* Очень тёмный синий, почти чёрный - как ночное небо */
    --color-background-darker: #080E19; /* Абсолютно тёмный для глубины */
    --color-background-light: rgba(201, 162, 39, 0.1); /* Лёгкий золотистый оттенок с прозрачностью */
    --color-background-lighter: rgba(201, 162, 39, 0.15); /* Чуть более насыщенный золотистый оттенок с прозрачностью */

    /* Цвета контролов */
    --color-control: #1F3452; /* Тёмно-синий для контролов */
    --color-control-border: #C9A227; /* Золотистая рамка для акцента */

    /* Цвета кнопок */
    --color-button: #C9A227; /* Золотистый для кнопок */
    --color-button-hover: #A78518; /* Более тёмный золотистый при наведении */
    --color-button-gradient-start: #C9A227; /* Начало градиента - золотистый */
    --color-button-gradient-end: #8C6A1B; /* Конец градиента - темный золотистый */

    /* Модальное окно */
    --color-modal-background: #14213D; /* Темно-синий фон для модалки */
    --color-modal-text: #E2E2E2; /* Светлый текст для модального окна */
    --color-modal-circle: #5D3A72; /* Пурпурно-фиолетовый для круга в модалке */
}

/* Специальные стили для усиления тематики */

body {
    background-image: linear-gradient(to bottom, var(--color-background), var(--color-background-dark));
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", serif;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* Стиль для навигации */
.navbar {
    background-color: var(--color-background-dark);
}

/* Кнопка с эффектом свечения */
.button, .main-button {
    text-shadow: 0 0 5px rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

.main-button {
    background: linear-gradient(to right, var(--color-button-gradient-start), var(--color-button-gradient-end));
    border: 1px solid var(--color-button);
    transition: all 0.5s;
}

.main-button:hover {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    transform: translateY(-3px);
}

/* Шапка с эффектом туманности */
.header {
    background: linear-gradient(135deg, var(--color-accent-3) 0%, var(--color-background-dark) 100%);
    position: relative;
    overflow: hidden;
}

.header-cont {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 45px;
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

/* Стиль для блоков с контентом */
.col-wrapper {
    background-color: var(--color-background-dark);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.experience-item {
    background-color: var(--color-accent-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Игровая секция - стилизована под старинный артефакт */
.slot-machine {
    background: var(--color-background-dark);
    border: 2px solid var(--color-button);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.2);
}

.grid {
    background-color: var(--color-background-darker);
    border: 1px solid var(--color-button);
}

.cell {
    background: var(--color-accent-2);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

button.spin {
    background: linear-gradient(to bottom, var(--color-button-gradient-start), var(--color-button-gradient-end));
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
    transition: all 0.3s;
}

button.spin:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

/* Контактная форма как древний свиток */
.contact-wrapper {
    background: var(--color-accent-2);
    border: 3px solid var(--color-button);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Модальное окно */
.modal {
    background: var(--color-background-dark);
    border: 2px solid var(--color-button);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

.modal .age-circle {
    background-color: var(--color-accent-3);
    border: 2px solid var(--color-button);
}

.modal h2 {
    color: var(--color-heading);
}

/* Информационный блок */
.info {
    background: var(--color-accent-2);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Кнопки управления */
.decrease, .increase {
    background: var(--color-background-dark);
    border: 1px solid var(--color-button);
    transition: all 0.3s;
}

.decrease:hover, .increase:hover {
    background: var(--color-accent-2);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* Возрастное ограничение */
.age {
    background: var(--color-accent-3);
}

.age-cont {
    background: var(--color-accent-2);
    border: 2px solid var(--color-button);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Подвал сайта */
.footer-wrapper {
    background-color: var(--color-background-dark);
    border-top: 1px solid var(--color-button);
}

.footer-logo {
    background: var(--color-accent-2);
}

/* Особые эффекты для анимации элементов */
@keyframes floatingEffect {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes sparkleEffect {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes rotateGlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Звездная пыль для элементов */
.img-col img, .img-wrapper img {
    position: relative;
    transition: transform 0.5s ease;
}

.img-col img:hover, .img-wrapper img:hover {
    transform: scale(1.03);
}

.img-col img::after, .img-wrapper img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%,
        rgba(201, 162, 39, 0.4) 0%,
        rgba(20, 33, 61, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.img-col img:hover::after, .img-wrapper img:hover::after {
    opacity: 1;
}

/* Эффект парения для важных элементов */
h2, .footer-logo, .logo {
    animation: floatingEffect 6s ease-in-out infinite;
}

/* Разное время анимации для асинхронности */
h3 {
    animation: floatingEffect 7s ease-in-out infinite;
}

.main-button {
    animation: floatingEffect 5s ease-in-out infinite;
}

/* Эффект для возрастного ограничения */
.age-cont {
    position: relative;
    z-index: 1;
}

.age-cont::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    border-radius: 20px;
    background: linear-gradient(45deg,
        rgba(201, 162, 39, 0.2),
        rgba(93, 58, 114, 0.2),
        rgba(201, 162, 39, 0.2),
        rgba(93, 58, 114, 0.2));
    z-index: -1;
    background-size: 300% 300%;
    animation: borderGlow 15s linear infinite;
    transform: translate(-50%, -50%);
}

/* Стилизация контактной формы */
.contact-wrapper {
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        rgba(201, 162, 39, 0.1),
        rgba(93, 58, 114, 0.1),
        rgba(201, 162, 39, 0.1),
        rgba(93, 58, 114, 0.1),
        rgba(201, 162, 39, 0.1)
    );
    opacity: 0.5;
    z-index: -1;
    animation: rotateGlow 30s linear infinite;
}

/* Модальное окно с эффектом свечения */
.modal::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 15px;
    background: linear-gradient(45deg,
        var(--color-accent-3),
        var(--color-button),
        var(--color-accent-3));
    z-index: -1;
    opacity: 0.6;
    filter: blur(5px);
    animation: borderGlow 10s linear infinite;
    background-size: 200% 200%;
}:root {
    /* Основные цвета */
    --color-background: #14213D; /* Глубокий ночной синий */
    --color-text: #E2E2E2; /* Мягкий светлый для текста */
    --color-heading: #C9A227; /* Золотистый для заголовков - напоминает старинные фолианты */
    --color-link-hover: rgba(201, 162, 39, 0.8); /* Золотистый при наведении, но с прозрачностью */

    /* Акцентные цвета */
    --color-accent-1: #455A8C; /* Глубокий синий с фиолетовым оттенком - напоминает сумерки */
    --color-accent-2: #1F3452; /* Более насыщенный тёмно-синий для контраста */
    --color-accent-3: #5D3A72; /* Пурпурно-фиолетовый для мистического ощущения */

    /* Фоновые цвета */
    --color-background-dark: #0D1526; /* Очень тёмный синий, почти чёрный - как ночное небо */
    --color-background-darker: #080E19; /* Абсолютно тёмный для глубины */
    --color-background-light: rgba(201, 162, 39, 0.1); /* Лёгкий золотистый оттенок с прозрачностью */
    --color-background-lighter: rgba(201, 162, 39, 0.15); /* Чуть более насыщенный золотистый оттенок с прозрачностью */

    /* Цвета контролов */
    --color-control: #1F3452; /* Тёмно-синий для контролов */
    --color-control-border: #C9A227; /* Золотистая рамка для акцента */

    /* Цвета кнопок */
    --color-button: #C9A227; /* Золотистый для кнопок */
    --color-button-hover: #A78518; /* Более тёмный золотистый при наведении */
    --color-button-gradient-start: #C9A227; /* Начало градиента - золотистый */
    --color-button-gradient-end: #8C6A1B; /* Конец градиента - темный золотистый */

    /* Модальное окно */
    --color-modal-background: #14213D; /* Темно-синий фон для модалки */
    --color-modal-text: #E2E2E2; /* Светлый текст для модального окна */
    --color-modal-circle: #5D3A72; /* Пурпурно-фиолетовый для круга в модалке */
}

/* Специальные стили для усиления тематики */

body {
    background-image: linear-gradient(to bottom, var(--color-background), var(--color-background-dark));
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23C9A227' stroke-opacity='0.05'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%235D3A72' fill-opacity='0.02'%3E%3Ccircle cx='769' cy='229' r='8'/%3E%3Ccircle cx='539' cy='269' r='8'/%3E%3Ccircle cx='603' cy='493' r='8'/%3E%3Ccircle cx='731' cy='737' r='8'/%3E%3Ccircle cx='520' cy='660' r='8'/%3E%3Ccircle cx='309' cy='538' r='8'/%3E%3Ccircle cx='295' cy='764' r='8'/%3E%3Ccircle cx='40' cy='599' r='8'/%3E%3Ccircle cx='102' cy='382' r='8'/%3E%3Ccircle cx='127' cy='80' r='8'/%3E%3Ccircle cx='370' cy='105' r='8'/%3E%3Ccircle cx='578' cy='42' r='8'/%3E%3Ccircle cx='237' cy='261' r='8'/%3E%3Ccircle cx='390' cy='382' r='8'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.7;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(93, 58, 114, 0.1) 0%, rgba(20, 33, 61, 0) 70%),
                radial-gradient(circle at 30% 80%, rgba(201, 162, 39, 0.08) 0%, rgba(20, 33, 61, 0) 60%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", serif;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* Стиль для навигации */
.navbar {
    background-color: rgba(13, 21, 38, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.navbar a {
    position: relative;
    overflow: hidden;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-heading);
    transition: width 0.3s ease-in-out;
}

.navbar a:hover::after {
    width: 100%;
}

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(20, 33, 61, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo:hover::after {
    opacity: 1;
}

/* Кнопка с эффектом свечения */
.button, .main-button {
    text-shadow: 0 0 5px rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.button::before, .main-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40px;
    height: 200%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: all 0.8s;
    z-index: 1;
    opacity: 0;
}

.button:hover::before, .main-button:hover::before {
    left: 120%;
    opacity: 1;
}

.main-button {
    background: linear-gradient(to right, var(--color-button-gradient-start), var(--color-button-gradient-end));
    border: 1px solid var(--color-button);
    transition: all 0.5s;
    z-index: 1;
}

.main-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-button-gradient-end), var(--color-button-gradient-start));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.main-button:hover {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    transform: translateY(-3px);
}

.main-button:hover::after {
    opacity: 1;
}

/* Шапка с эффектом туманности */
.header {
    background: linear-gradient(135deg, var(--color-accent-3) 0%, var(--color-background-dark) 100%);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(93, 58, 114, 0.4) 0%, rgba(20, 33, 61, 0) 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 162, 39, 0.2) 0%, rgba(20, 33, 61, 0) 50%);
    z-index: 1;
    opacity: 0.8;
    animation: nebula 15s infinite alternate;
}

@keyframes nebula {
    0% {
        opacity: 0.6;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.6;
        background-position: 100% 100%;
    }
}

.header-cont {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 45px;
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
    animation: glow 4s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
    }
    100% {
        text-shadow: 0 0 25px rgba(201, 162, 39, 0.7), 0 0 40px rgba(93, 58, 114, 0.3);
    }
}

/* Стиль для блоков с контентом */
.col-wrapper {
    background-color: var(--color-background-dark);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.col-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--color-accent-3),
        var(--color-background-dark),
        var(--color-button),
        var(--color-background-dark),
        var(--color-accent-3));
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    background-size: 500%;
    animation: borderGlow 15s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.experience-item {
    background-color: var(--color-accent-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
}

.experience-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(201, 162, 39, 0.05) 0%,
        rgba(93, 58, 114, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.experience-item:hover::after {
    opacity: 1;
}

/* Игровая секция - стилизована под старинный артефакт */
.slot-machine {
    background: var(--color-background-dark);
    border: 2px solid var(--color-button);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' opacity='0.4'/%3E%3Cpath d='M15 15h50v50H15V15zm5 5v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.grid {
    background-color: var(--color-background-darker);
    border: 1px solid var(--color-button);
    position: relative;
    overflow: hidden;
}

.grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom,
        rgba(201, 162, 39, 0.2) 0%,
        rgba(20, 33, 61, 0) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to top,
        rgba(201, 162, 39, 0.2) 0%,
        rgba(20, 33, 61, 0) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.cell {
    background: var(--color-accent-2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.cell::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(201, 162, 39, 0.2) 0%,
        rgba(20, 33, 61, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cell:hover::after {
    opacity: 1;
}

button.spin {
    background: linear-gradient(to bottom, var(--color-button-gradient-start), var(--color-button-gradient-end));
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

button.spin::before {
    content: '';
    position: absolute;
    top: -180%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    transform: scale(0.5);
}

button.spin:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

button.spin:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Контактная форма как древний свиток */
.contact-wrapper {
    background: var(--color-accent-2);
    border: 3px solid var(--color-button);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Модальное окно */
.modal {
    background: var(--color-background-dark);
    border: 2px solid var(--color-button);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

.modal .age-circle {
    background-color: var(--color-accent-3);
    border: 2px solid var(--color-button);
}

.modal h2 {
    color: var(--color-heading);
}

/* Информационный блок */
.info {
    background: var(--color-accent-2);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Кнопки управления */
.decrease, .increase {
    background: var(--color-background-dark);
    border: 1px solid var(--color-button);
    transition: all 0.3s;
}

.decrease:hover, .increase:hover {
    background: var(--color-accent-2);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* Возрастное ограничение */
.age {
    background: var(--color-accent-3);
}

.age-cont {
    background: var(--color-accent-2);
    border: 2px solid var(--color-button);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Подвал сайта */
.footer-wrapper {
    background-color: var(--color-background-dark);
    border-top: 1px solid var(--color-button);
}

.footer-logo {
    background: var(--color-accent-2);
}