    :root {
        --bg: #f5f7fb;
        --surface: #ffffff;
        --surface-dark: #1b1c29;
        --surface-soft: #f1f4fb;
        --text: #111827;
        --muted: #5b6472;
        --border: #dbe3ef;
        --primary: #3b82f6;
        --primary-dark: #2563eb;
        --accent: #7c3aed;
        --success: #16a34a;
        --warning: #f59e0b;
        --radius-xl: 24px;
        --radius-lg: 18px;
        --radius-md: 14px;
        --radius-sm: 10px;
        --shadow-sm: 0 10px 30px rgba(17, 24, 39, .06);
        --shadow-md: 0 18px 50px rgba(17, 24, 39, .10);
        --container: 1240px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        margin: 0;
        font-family: Roboto, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.55;
        color: var(--text);
        background:
            radial-gradient(circle at top right, rgba(59, 130, 246, .08), transparent 24%),
            radial-gradient(circle at top left, rgba(124, 58, 237, .08), transparent 22%),
            var(--bg);
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button {
        font: inherit;
    }

    ul,
    ol {
        margin: 0;
        padding-left: 1.25rem;
    }


    h1,
    h2,
    h3 {
        margin-top: 0;
        text-align: center;
    }

    p {
        margin-top: 0;
    }

    p:last-child {
        margin-bottom: 0;
    }

    .skip-link {
        position: absolute;
        left: 12px;
        top: -60px;
        background: #fff;
        color: #000;
        padding: 10px 14px;
        border-radius: 10px;
        z-index: 1000;
        transition: top .2s ease;
    }

    .skip-link:focus {
        top: 12px;
    }

    .container {
        width: min(var(--container), calc(100% - 32px));
        margin-inline: auto;
    }

    .page_header {
        z-index: 30;
        background: rgba(255, 255, 255, .92);
        width: 100%;
        position: sticky;
        top: 0;
        backdrop-filter: blur(12px);
        box-shadow: 0 0 1px rgba(0, 0, 0, .04), 0 0 2px rgba(0, 0, 0, .06), 0 4px 8px rgba(0, 0, 0, .04);
        border-bottom: 1px solid rgba(219, 227, 239, .9);
    }

    .header_shell {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 20px;
        min-height: 78px;
        padding: 14px 0;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .header_brand {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .burger_button {
        display: none;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        color: var(--text);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 41;
        flex: 0 0 auto;
    }

    .burger_button span {
        position: absolute;
        left: 12px;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform .22s ease, opacity .18s ease, top .22s ease;
    }

    .burger_button span:nth-child(1) {
        top: 15px;
    }

    .burger_button span:nth-child(2) {
        top: 22px;
    }

    .burger_button span:nth-child(3) {
        top: 29px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile_menu_overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 16, 30, .5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
        z-index: 38;
    }

    .mobile_menu_panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100dvh;
        background: #fff;
        box-shadow: -24px 0 60px rgba(17, 24, 39, .18);
        transform: translateX(100%);
        transition: transform .24s ease;
        z-index: 39;
        display: flex;
        flex-direction: column;
        padding: 18px;
        gap: 18px;
    }

    .mobile_menu_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border);
    }

    .mobile_menu_title {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .mobile_menu_close {
        width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        flex: 0 0 auto;
    }

    .mobile_menu_nav {
        display: grid;
        gap: 8px;
        overflow-y: auto;
        padding-right: 4px;
    }

    .mobile_menu_link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 16px;
        background: var(--surface-soft);
        color: #1f2937;
        font-weight: 600;
    }

    .mobile_menu_link::after {
        content: '›';
        color: var(--primary-dark);
        font-size: 1.1rem;
    }

    .mobile_menu_actions {
        display: grid;
        gap: 10px;
        margin-top: auto;
        padding-top: 8px;
        border-top: 1px solid var(--border);
    }

    body.menu-open .mobile_menu_overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.menu-open .mobile_menu_panel {
        transform: translateX(0);
    }

    body.menu-open .burger_button span:nth-child(1) {
        top: 22px;
        transform: rotate(45deg);
    }

    body.menu-open .burger_button span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .burger_button span:nth-child(3) {
        top: 22px;
        transform: rotate(-45deg);
    }

    .logo_mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: inline-grid;
        place-items: center;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: var(--shadow-sm);
        font-size: 1.1rem;
        font-weight: 800;
    }

    .main_nav {
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    .menu_header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        min-width: 0;
    }

    .menu_item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 999px;
        color: #2a3241;
        font-weight: 500;
        transition: .2s ease;
    }

    .menu_item:hover,
    .menu_item:focus-visible {
        background: var(--surface-soft);
        color: var(--primary-dark);
        outline: none;
    }

    .header_actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        min-width: max-content;
    }

    .button,
    .button_like {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        padding: 12px 18px;
        border: 1px solid transparent;
        border-radius: 999px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }

    .button:hover,
    .button_like:hover {
        transform: translateY(-1px);
    }

    .button.primary {
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: var(--shadow-sm);
    }

    .button.secondary {
        color: var(--primary-dark);
        background: #fff;
        border-color: var(--border);
    }

    .button.ghost {
        color: var(--text);
        background: transparent;
        border-color: var(--border);
    }

    .button.small {
        min-height: 40px;
        padding: 10px 14px;
        font-size: .95rem;
    }

    .page_main {
        padding: 26px 0 56px;
    }

    .hero {
        background: linear-gradient(135deg, rgba(27, 28, 41, .96), rgba(44, 46, 76, .96));
        color: #fff;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-bottom: 24px;
    }

    .hero_inner {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
        gap: 28px;
        align-items: center;
        padding: 32px;
    }

    .hero_text p {
        max-width: 72ch;
        color: rgba(255, 255, 255, .82);
        margin-bottom: 0;
    }

    .hero_title {
        margin-bottom: 14px;
        font-size: clamp(1.9rem, 3vw, 3.15rem);
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    .hero_badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 20px;
        padding: 0;
        list-style: none;
    }

    .hero_badges li {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .15);
        font-size: .95rem;
    }

    .hero_panel {
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 22px;
        padding: 22px;
    }

    .hero_stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hero_stat {
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .hero_stat strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .page_block_wrap {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-sm);
        padding: 26px;
        margin: 20px 0;
        overflow: hidden;
    }

    .page_title,
    .section_title {
        font-size: clamp(1.35rem, 2.1vw, 2rem);
        line-height: 1.18;
        margin-bottom: 14px;
        letter-spacing: -.02em;
    }

    .section_intro {
        color: var(--muted);
        margin-bottom: 18px;
    }

    .toc_list {
        display: grid;
        gap: 12px 18px;
        list-style: disc;
        padding-left: 1.2rem;
        color: var(--text);
    }

    .toc_list a {
        color: var(--primary-dark);
        font-weight: 500;
    }

    .info_table_wrap {
        overflow-x: auto;
        margin-top: 18px;
    }

    table {
        width: 100%;
        min-width: 640px;
        border-collapse: collapse;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
    }

    td,
    th {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        vertical-align: top;
        text-align: left;
    }

    tr:last-child td,
    tr:last-child th {
        border-bottom: 0;
    }

    tbody tr:nth-child(odd) {
        background: #fafcff;
    }

    .cards_grid,
    .games_sections,
    .providers_grid,
    .payments_grid,
    .footer_top {
        display: grid;
        gap: 18px;
    }

    .cards_grid,
    .providers_grid,
    .payments_grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .games_sections {
        align-items: start;
    }

    .card,
    .game_section,
    .provider_card,
    .payment_card,
    .footer_card {
        background: linear-gradient(180deg, #fff, #f9fbff);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 18px;
        min-width: 0;
        height: 100%;
    }

    .card_head,
    .game_section_head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .icon_badge {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: inline-grid;
        place-items: center;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(59, 130, 246, .14), rgba(124, 58, 237, .16));
        color: var(--primary-dark);
        font-weight: 800;
    }

    .card_title,
    .game_section_title,
    .footer_card h3 {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.25;
    }

    .card p,
    .game_section p,
    .footer_card p,
    .page_block_wrap li,
    .page_block_wrap .muted {
        color: var(--muted);
    }

    .game_slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-top: 16px;
    }

    .game_item {
        min-width: 0;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(17, 24, 39, .04);
    }

    .game_media {
        aspect-ratio: 16 / 11;
        background: linear-gradient(135deg, #dbeafe, #ede9fe);
        overflow: hidden;
        position: relative;
    }

    .game_media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .game_body {
        padding: 14px;
    }

    .game_desc {
        margin: 0 0 14px;
        font-size: .94rem;
        color: var(--muted);
    }

    .game_meta {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
        font-size: .92rem;
        color: var(--muted);
    }

    .game_name {
        font-size: 1rem;
        line-height: 1.35;
        margin: 0 0 12px;
        word-break: break-word;
    }

    .game_actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .stacked_text>*+* {
        margin-top: 14px;
    }

    .faq-content {
        display: grid;
        gap: 12px;
    }

    .faq-item {
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        overflow: hidden;
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 18px 20px;
        font-weight: 700;
        position: relative;
        padding-right: 54px;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: "+";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        line-height: 1;
        color: var(--primary-dark);
    }

    .faq-item[open] summary::after {
        content: "−";
    }

    .faq-answer {
        padding: 0 20px 18px;
        color: var(--muted);
    }

    .page_footer {
        color: #fff;
        background-color: #1b1c29;
        padding-top: 36px;
        margin-top: 12px;
    }

    .footer_content .block {
        color: #cfd4dc;
        padding: 1.875rem 0;
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.5rem;
    }

    .footer_top {
        grid-template-columns: 1.15fr .9fr .9fr .8fr;
        align-items: start;
    }

    .footer_card {
        background: rgba(255, 255, 255, .04);
        border-color: rgba(255, 255, 255, .08);
    }

    .footer_menu {
        list-style: none;
        padding: 0;
        display: grid;
        gap: 10px;
    }

    .footer_menu a {
        color: #e8ecf3;
    }

    .footer_note {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 18px 0 28px;
        text-align: center;
        color: #b3bbc6;
    }

    .legal_box {
        padding: 18px 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .visually-hidden {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    @media (max-width: 1080px) {

        .hero_inner,
        .footer_top,
        .games_sections {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 720px) {
        .container {
            width: min(var(--container), calc(100% - 20px));
        }

        .header_shell {
            grid-template-columns: auto 1fr auto;
            min-height: 70px;
            gap: 12px;
        }

        .header_brand {
            min-width: 0;
        }

        .burger_button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .main_nav,
        .header_actions {
            display: none;
        }

        .page_main {
            padding-top: 18px;
        }

        .page_block_wrap {
            padding: 18px;
            border-radius: 20px;
        }

        .hero_inner {
            padding: 20px;
            gap: 20px;
        }

        .hero_stats {
            grid-template-columns: 1fr;
        }

        .cards_grid,
        .providers_grid,
        .payments_grid,
        .game_slider,
        .toc_list {
            grid-template-columns: 1fr;
        }

        table {
            min-width: 560px;
        }
    }

    @media (max-width: 480px) {
        .logo {
            font-size: .98rem;
        }

        .logo_mark {
            width: 38px;
            height: 38px;
            border-radius: 12px;
        }

        .button,
        .button_like {
            width: 100%;
        }

        .header_actions {
            gap: 8px;
        }

        .menu_item {
            padding-inline: 12px;
        }

        .hero_badges li {
            width: 100%;
        }

        .faq-item summary {
            padding: 16px 48px 16px 16px;
        }

        .faq-answer {
            padding: 0 16px 16px;
        }
    }


    .game_image_fallback {
        display: grid;
        place-items: center;
        min-height: 220px;
        padding: 24px;
        border-radius: 18px;
        background: linear-gradient(135deg, #eef2ff 0%, #eff6ff 100%);
        color: #475569;
        font-weight: 700;
        text-align: center;
    }

    .content_box {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 28px;
        box-shadow: var(--shadow-sm);
    }

    .section_intro {
        margin: 22px 0;
        color: var(--muted);
        line-height: 1.65;
    }

    .steps_list {
        display: grid;
        gap: 16px;
    }

    .step_card {
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: var(--surface-soft);
    }

    .step_head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }

    .info_note {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: var(--surface-soft);
    }

    .check_list {
        margin: 0;
        padding-left: 20px;
    }

    .check_list li+li {
        margin-top: 8px;
    }

    .table_wrap {
        overflow-x: auto;
    }

    .info_table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
    }

    .info_table th,
    .info_table td {
        padding: 14px 16px;
        border: 1px solid var(--border);
        text-align: left;
        vertical-align: top;
    }

    .info_table th {
        background: #eef3fb;
        font-weight: 700;
    }

    @media (max-width: 767px) {
        .content_box {
            padding: 18px;
            border-radius: 18px;
        }

        .step_card,
        .info_note {
            padding: 18px;
            border-radius: 16px;
        }

        .step_head {
            align-items: flex-start;
        }
    }

    .providers_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }

    .provider_card {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        padding: 14px 16px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--surface);
        color: var(--text);
        font-weight: 600;
        line-height: 1.35;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .provider_card:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
    }

    .providers_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }

    .provider_card {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        padding: 14px 16px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--surface);
        color: var(--text);
        font-weight: 600;
        line-height: 1.35;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .provider_card:hover {
        transform: translateY(-2px);
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
    }

    .providers_more {
        margin-top: 18px;
    }

    .providers_more_button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
        padding: 0 22px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: var(--surface-soft);
        color: var(--text);
        font-weight: 700;
        cursor: pointer;
        list-style: none;
        user-select: none;
    }

    .providers_more_button::-webkit-details-marker {
        display: none;
    }

    .providers_more_button::after {
        content: "▾";
        font-size: 14px;
        transition: transform .2s ease;
    }

    .providers_more[open] .providers_more_button::after {
        transform: rotate(180deg);
    }

    .providers_more[open] .providers_more_button {
        margin-bottom: 18px;
    }

    .providers_grid_more {
        margin-top: 0;
    }

    .expandable_text_box {
  margin-top: 20px;
}

.section_expand {
  margin-top: 20px;
}

.section_expand_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.section_expand_button::-webkit-details-marker {
  display: none;
}

.section_expand_button::after {
  content: "▾";
  font-size: 14px;
  transition: transform .2s ease;
}

.section_expand[open] .section_expand_button::after {
  transform: rotate(180deg);
}

.section_expand_content {
  padding-top: 18px;
}

.language_switcher,
.mobile_language_switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.language_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: .2s ease;
}

.language_link:hover,
.language_link:focus-visible {
  background: var(--surface-soft);
  color: var(--primary-dark);
  outline: none;
}

.language_link.is_active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.mobile_menu_languages {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.mobile_menu_lang_title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 720px) {
  .language_switcher {
    display: none;
  }
}

.footer_card_brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_contacts {
  display: grid;
  gap: 10px;
}

.footer_contact_item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e8ecf3;
  word-break: break-word;
}

.footer_contact_icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer_socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer_social_link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: .2s ease;
}

.footer_social_link:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.footer_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .footer_contacts {
    gap: 8px;
  }

  .footer_socials {
    gap: 8px;
  }

  .footer_social_link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}


.footer_logo {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}

.footer_logo_image {
  display: block;
  width: auto;
  max-width: 160px;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer_logo_image {
    max-width: 140px;
    height: 40px;
  }
}