* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 250px; /* Чтобы оставалось место под фиксированную плашку с куки */
}

.top-background {
    background-image: url('assets/header-background.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}

/* Затемнение снизу, чтобы скрыть обрезку персонажей */
.top-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #1a1a1a 90%);
    z-index: 10;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    z-index: 10;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: "Arial Black", "Impact", sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    transform: scaleY(1.1); /* Вытягиваем шрифт вверх, чтобы он был более узким и высоким */
    transform-origin: left center;
}

.logo-text .text-red {
    color: #ed4224;
}

.logo-text .text-white {
    color: #ffffff;
}

.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 300px; 
    margin-top: -80px; /* Поднимаем персонажей в самый верх */
}

.hero-characters {
    width: 120%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    z-index: 5;
    position: relative;
    mask-image: linear-gradient(to bottom, black 80%, transparent 0%);
    margin-bottom: -40px; 
}

/* Decorative Elements */
.decor-arrows {
    position: absolute;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.decor-arrows.left-top {
    top: 20px;
    left: 20px;
}

.arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ffffff;
}

.arrow.dim {
    border-left-color: rgba(255, 255, 255, 0.3);
}

.decor-crosses {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}

.decor-crosses.left-mid {
    top: 30%;
    left: 20px;
    color: #ffffff;
}

.decor-crosses.right-mid {
    top: 50%;
    right: 20px;
    color: #ffffff;
}

.decor-crosses .dim {
    color: rgba(255, 255, 255, 0.5);
}

.decor-crosses .dark {
    color: rgba(255, 255, 255, 0.2);
}

/* Play Section */
.play-section {
    padding: 0 20px 20px 20px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 11;
    margin-top: -60px; /* Подтягиваем кнопку играть вверх к обрезанным персонажам */
}

.play-btn {
    width: 100%;
    max-width: 400px;
    background-color: #232323;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:active {
    background-color: #333;
}

/* Game Description Section */
.game-description {
    padding: 20px 20px 60px 20px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 11;
}

.desc-logo {
    font-family: "Arial Black", "Impact", sans-serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    transform: scaleY(1.1);
}

.desc-logo .text-red {
    color: #ed4224;
}

.desc-logo .text-white {
    color: #ffffff;
}

.desc-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #8a8a8a;
    text-align: left;
    max-width: 400px;
    margin-bottom: 50px;
}

.scroll-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ffffff;
}

.scroll-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Features Section */
.features-section {
    padding: 20px 0 60px 0;
    background-color: #1a1a1a;
    background-image: url('assets/background-cards.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
    overflow: hidden; 
}

/* Затемнения (переходы) сверху и снизу для фона */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #1a1a1a 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.features-title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.features-title .text-red {
    color: #ed4224;
}

/* Карточки */
.cards-carousel {
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.cards-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Скрываем скроллбар в Firefox */
    -ms-overflow-style: none;  /* Скрываем скроллбар в Edge */
    cursor: grab;
    padding-bottom: 20px; /* Тень/Отступ */
}

.cards-track::-webkit-scrollbar {
    display: none; /* Скрываем скроллбар в Chrome и Safari */
}

.cards-track:active {
    cursor: grabbing;
}

.card {
    position: relative;
    width: 140px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card.expanded {
    width: 250px; /* Раскрываем в квадрат */
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.4s ease;
}

.card:hover .card-bg {
    transform: scale(1.03); 
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    z-index: 2;
}

.card-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.card-icon svg {
    width: 16px;
    height: 16px;
    fill: #000000;
}

.card-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 3;
    line-height: 1.2;
}

.card-title .text-red {
    color: #ed4224;
}

/* Start Playing Section */
.start-playing-section {
    padding: 30px 20px 40px 20px;
    margin: 0 15px 40px 15px; /* Отступы по бокам, чтобы выглядела как панель */
    border-radius: 20px; /* Скругления как на скрине */
    background-color: #1a1a1a;
    background-image: url('assets/lets-play-background.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.start-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-num {
    font-size: 18px;
    font-weight: 800;
    color: #e0e0e0;
    min-width: 25px;
}

.step-text {
    font-size: 16px;
    font-weight: 700;
    color: #d8d8d8;
    line-height: 1.3;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.store-btn {
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем иконку и текст внутри кнопки */
    padding: 15px 25px;
    text-decoration: none;
    color: #111111;
    transition: transform 0.2s ease, opacity 0.2s;
    height: 85px;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.store-btn img,
.server-card,
.server-card * {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.store-btn:active {
    transform: scale(0.97);
}

.store-icon {
    height: 40px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

.store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background-color: #222222;
    padding: 20px;
    border-top: 1px solid #333;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.2    ;
    color: #dddddd;
    margin-bottom: 20px;
}

.policy-link {
    color: #ff3333;
    text-decoration: underline;
}

.cookie-ok-btn {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-ok-btn:active {
    background-color: #e0e0e0;
}

/* Секция серверов */
.servers-section {
    padding: 0 15px 40px 15px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.servers-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.highlight-red {
    color: #ed4224;
}

.servers-subtitle {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.servers-subtitle .highlight-red {
    font-size: 22px;
    font-weight: 900;
}

.servers-grid {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.servers-grid::-webkit-scrollbar {
    display: none;
}

.server-card {
    background-color: #222222;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 170px;
    flex-shrink: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 0;
    border-color: transparent #ffffff transparent transparent;
}

.server-id {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 600;
    margin-bottom: 4px;
}

.server-name {
    font-size: 16px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.server-online {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.server-online .total-slots {
    color: #777777;
    font-weight: 600;
}

/* Кастомный скроллбар серверов */
.custom-scrollbar {
    width: 100%;
    max-width: 90%;
    margin: 10px auto 30px auto;
    height: 10px;
    background-color: #2b2b2b;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.custom-scrollbar-thumb {
    height: 100%;
    width: 60px; /* Изначальная ширина, может меняться в JS */
    background-color: #ffffff;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: grab;
    transition: background-color 0.2s;
}

.custom-scrollbar-thumb:active {
    cursor: grabbing;
    background-color: #e0e0e0;
}

/* Кнопка чата */
.chat-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #4a45c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 80;
    transition: transform 0.2s;
}

.chat-btn:active {
    transform: scale(0.9);
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 8, 11, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 200;
    padding: 20px;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.admin-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-modal {
    width: clamp(560px, 82vw, 720px);
    max-width: 720px;
    background: radial-gradient(circle at top left, rgba(237, 66, 36, 0.18), transparent 35%),
                linear-gradient(180deg, #141317 0%, #18181d 100%);
    border: 1px solid rgba(237, 66, 36, 0.18);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-18px) scale(0.97);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.admin-modal-backdrop.open .admin-modal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.admin-modal-backdrop.closing .admin-modal {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
}

@keyframes modalAppeal {
    from {
        opacity: 0;
        transform: translateY(-18px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admin-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.admin-modal-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(237, 66, 36, 0.22);
}

.admin-modal-desc {
    margin-bottom: 0;
    color: #d1d1d1;
    line-height: 1.6;
    max-width: 88%;
}

.admin-input-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.35s ease;
    opacity: 1;
    transform: translateY(0);
    max-height: 2000px;
    overflow: hidden;
}

.admin-input-block.hidden {
    opacity: 0;
    transform: translateY(-28px);
    max-height: 0;
    pointer-events: none;
}

.admin-modal-tip {
    margin-bottom: 10px;
    color: #ffbab0;
    font-size: 14px;
    line-height: 1.4;
}

.admin-modal-error {
    color: #ff7d7d;
    font-size: 13px;
    min-height: 14px;
    margin-top: 2px;
    line-height: 1.2;
}

.admin-modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
    color: #e9e9e9;
    font-weight: 700;
    font-size: 14px;
}

.admin-modal-field input,
.admin-modal-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: #ffffff;
    padding: 15px 18px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    appearance: none;
}

.admin-modal-field input:focus,
.admin-modal-field select:focus {
    border-color: #ed4224;
    box-shadow: 0 0 0 4px rgba(237, 66, 36, 0.12);
    transform: translateY(-1px);
}

.admin-modal-select {
    background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0));
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 12px;
    cursor: pointer;
}

.admin-modal-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.admin-progress-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(30px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    padding-top: 0;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
}

.admin-progress-block.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 220px;
    pointer-events: auto;
    margin-top: 18px;
    padding-top: 12px;
}

.admin-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #dddddd;
}

.admin-progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.admin-progress-fill {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff5e22, #ed4224);
    transition: width 0.25s ease;
}

.admin-progress-error {
    color: #ff9a9a;
    font-size: 13px;
    min-height: 18px;
    line-height: 1.3;
}

.admin-progress-retry {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    pointer-events: none;
}

.admin-progress-retry.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.admin-progress-retry:hover {
    background: rgba(255,255,255,0.14);
}

.admin-modal-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 18px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.admin-modal-submit {
    background: linear-gradient(135deg, #f83f2f 0%, #ed4224 100%);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(237, 66, 36, 0.24);
}

.admin-modal-submit:hover {
    transform: translateY(-1px);
}

.admin-modal-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
}

.admin-modal-submit:active,
.admin-modal-cancel:active,
.admin-modal-close:active {
    transform: scale(0.98);
}

/* Соцсети и финал */
.social-final-section {
    padding: 30px 15px 0 15px;
    background-color: #1a1a1a;
    background-image: linear-gradient(to bottom, #1a1a1a 0%, rgba(26, 26, 26, 0) 150%), url('assets/lets-play-background.webp');
    background-size: cover;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.social-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-btn {
    background-color: #2a2a2a;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.social-btn:active {
    background-color: #444444;
}

.final-title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-characters {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
}

.char-man {
    position: absolute;
    left: -25%;
    bottom: 0;
    height: 135%;
    z-index: 1;
}

.char-woman {
    position: absolute;
    right: -25%;
    bottom: 0;
    height: 135%;
    z-index: 0;
}

.final-play-btn {
    display: block;
    width: 90%;
    background-color: #ffffff;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    padding: 20px 0;
    border-radius: 15px;
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.final-play-btn:active {
    transform: scale(0.98);
}

/* Footer (Подвал) */
.footer-section {
    background-color: #151515;
    padding: 40px 20px 100px 20px;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-payments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.pay-logo {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.footer-legal {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.footer-legal p {
    margin-bottom: 8px;
}

.footer-legal .bold-text {
    font-weight: bold;
    color: #999999;
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #333333;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    color: #888888;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
}

/* Cookie Banner */
