:root {
    --bg: #0d273d;
    --bg-top: #1a4666;
    --panel: #153654;
    --panel-soft: #1d4667;
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #eef8ff;
    --muted: #bed3e5;
    --yellow: #f3ae4b;
    --white: #ffffff;
    --table-head: #eef7ff;
    --table-cell: #f8fbff;
    --container: 1040px;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
    --green:#5aa8dd;
    --green-dark:#2f729f;
    --green-light:#88c8f1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 36px;
}

section[id],
article[id],
nav[id],
div[id],
h2[id],
h3[id] {
    scroll-margin-top: 36px;
}

section {
    margin-top: 3rem;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Tahoma, Verdana, Segoe UI, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);

    background: linear-gradient(180deg, #173b58 0%, #12314a 42%, #081521 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
    color: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #123a58;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 60px;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;
    min-height: 60px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.site-brand__image {
    display: block;
    width: auto;
    height: 40px;
}

.site-nav {
    justify-self: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__item a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 120%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.button--green {
    color: #ffffff;
    background: #5aa8dd;
}

.button--light {
    color: #12314a;
    background: #eef7ff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 999px;
}

.button:hover {
    transform: translateY(-1px);
}

.button--green {
    color: var(--white);
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
}

.button--light {
    color: #12314a;
    background: #ffffff;
}

.button--outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.button--small {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
}

.button--pill {
    min-height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__line {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
}

.intro-section {
    padding: 22px 0 36px;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
    align-items: center;
}

.intro-copy h1 {
    margin: 0 0 18px;
    max-width: 700px;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 700;
}

.intro-copy p {
    margin: 0 0 12px;
    max-width: 700px;
    color: var(--muted);
    font-size: 15px;
}

.intro-actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.intro-side {
    display: flex;
    justify-content: center;
}

.studio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 172px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
    text-align: center;
}

.studio-box__brand {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
}

.studio-box__sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 16px;
    letter-spacing: 0.45em;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.game-card {
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.game-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    margin-bottom: 18px;
    border-radius: 6px;
    background: linear-gradient(180deg, #8ec2e6 0%, #3d7dac 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.game-card__image--alt {
    background: linear-gradient(180deg, #c9e6f8 0%, #5f98c3 100%);
}

.game-card__image--third {
    background: linear-gradient(180deg, #a7d0ef 0%, #477ca8 100%);
}

.game-card__image span {
    color: var(--yellow);
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.game-card h2 {
    margin: 0 0 10px;
    font-size: 31px;
    line-height: 1.1;
}

.game-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.game-card__actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.article-section {
    padding: 18px 0 56px;
}

.article {
    max-width: 960px;
    margin: 0 auto;
}

.content-block + .content-block {
    margin-top: 34px;
}

.content-block h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
}

.content-block h3 {
    margin: 16px 0 10px;
    font-size: 28px;
    line-height: 1.16;
}

.content-block p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
}

.content-block__head {
    display: block;
}

.content-block__head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 15px;
}

.list li + li {
    margin-top: 10px;
}

.list li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;
    color: #7ed4ff;
}

.content-visual__frame,
.wide-visual__inner {
    border-radius: 6px;
    overflow: hidden;
}

.content-visual__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 55%, #e4e4e4 100%);
    color: #161616;
    text-align: center;
}

.content-visual__frame--dark {
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 58%, #ececec 100%);
}

.content-visual__frame span {
    font-size: 42px;
    font-weight: 700;
}

.content-visual__frame small {
    margin-top: 10px;
    font-size: 14px;
    color: #515151;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.toc-chip-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.toc-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 4px;
    background: linear-gradient(180deg, #5d97c7 0%, #2e6d9f 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.wide-visual {
    margin-top: 18px;
}

.wide-visual__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 330px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 54%, #ececec 100%);
}

.wide-visual__mock {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        linear-gradient(135deg, #6ba9d8 0%, #173b58 100%);
}

.wide-visual__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 26px;
    color: #1a1a1a;
}

.wide-visual__text strong {
    font-size: 52px;
    line-height: 0.95;
}

.wide-visual__text span {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 16px;
    border-radius: 6px;
    background: #12314a;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}



.content-table-wrap::-webkit-scrollbar {
    height: 10px;
}

.content-table-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.content-table-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7dc1ea 0%, #427cab 100%);
    border-radius: 999px;
}
.feature-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.feature-table th,
.feature-table td {
    padding: 11px 14px;
    border: 1px solid #d4d4d4;
    text-align: left;
    color: #1b1b1b;
    font-size: 14px;
}

.feature-table th {
    background: var(--table-head);
    font-weight: 700;
}

.feature-table td {
    background: var(--table-cell);
}

.faq-block {
    padding-bottom: 16px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
}

.faq-item + .faq-item {
    margin-top: 12px;
}

.faq-item summary {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
}

.faq-item p {
    padding: 0 18px 18px;
    margin: 0;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c2235;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
}

.site-footer p,
.site-footer a {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 960px) {
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        margin-left: 0;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 0;
        border-radius: 0 0 6px 6px;
        background: #173b58;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .site-header.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .menu__trigger,
    .menu__item > a {
        justify-content: flex-start;
        width: 100%;
        padding: 10px 0;
    }

    .sub-menu {
        position: static;
        min-width: 0;
        margin-top: 4px;
        padding: 0 0 0 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .menu__item.is-open > .sub-menu {
        display: block;
    }

    .intro-grid,
    .content-block__head--split,
    .wide-visual__inner {
        grid-template-columns: 1fr;
    }

    .intro-side {
        justify-content: flex-start;
    }

    .studio-box {
        max-width: 320px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .wide-visual__inner {
        min-height: 0;
    }

    .wide-visual__mock {
        min-height: 220px;
    }

    .wide-visual__text strong {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .intro-section {
        padding-top: 18px;
    }

   h1 {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }
     h2 {
        font-size: 28px;
        line-height: 1;
        text-align: center;
    }

    h3 {
        font-size: 24px;
    }

    .intro-actions,
    .game-card__actions {
        flex-wrap: wrap;
    }

    .button--pill {
        min-height: 52px;
        padding: 0 26px;
        font-size: 16px;
    }

    .site-footer__inner {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }
}

@media (max-width: 960px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        row-gap: 12px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-brand {
        grid-column: 1 / 2;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2 / 3;
        justify-self: end;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
    }

    .site-header.nav-open .site-nav {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 8px;
    }

    .menu__item a {
        width: 100%;
        min-height: 48px;
        padding: 0 12px;
    }

    .header-actions {
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
    }

    .header-actions .button {
        flex: 1 1 50%;
    }
}

.content-center {
    text-align: center;
    margin: 1rem auto 2rem;
}

/*******************/

.content-center {
    align-items: center;
    gap: 12px;
}

.action-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    margin: 0 .2rem;
    font-size: 120%;
}

.action-button::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -145%;
    width: 42%;
    height: 140%;
    transform: rotate(20deg);
    pointer-events: none;
    opacity: 0;
}

.action-button:hover {
    transform: translateY(-1px);
}

.action-button:active {
    transform: translateY(0);
}

.action-button:focus-visible {
    outline: none;
}

/* Ghost button */

.action-button--green {
    color: #ffffff;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    border: 1px solid var(--green-dark);
    box-shadow:
            0 1px 0 rgba(255,255,255,0.18) inset,
            0 8px 18px rgba(0,0,0,0.25);
}

/* shine animation */
.action-button--green::before {
    background: linear-gradient(
            90deg,
            rgba(255,255,255,0) 0%,
            rgba(200,255,200,0.15) 20%,
            rgba(255,255,255,0.9) 50%,
            rgba(180,255,180,0.25) 80%,
            rgba(255,255,255,0) 100%
    );

    animation: button-shine-green 4.5s ease-in-out infinite;
}

/* hover */
.action-button--green:hover {
    background: linear-gradient(
            180deg,
            var(--green-light) 0%,
            var(--green) 100%
    );

    border-color: var(--green);
    box-shadow:
            0 1px 0 rgba(255,255,255,0.2) inset,
            0 12px 24px rgba(0,0,0,0.35);
}

/* active */
.action-button--green:active {
    transform: translateY(1px);
    box-shadow:
            0 2px 8px rgba(0,0,0,0.35) inset;
}

/* Primary button */

.action-button--primary {
    color: #ffffff;
    background: linear-gradient(180deg, #f5bf66 0%, #f0a244 52%, #de7f2f 100%);
    border: 1px solid #e39a43;
    box-shadow:
            0 1px 0 rgba(255, 245, 220, 0.28) inset,
            0 10px 22px rgba(222, 127, 47, 0.28);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.action-button--primary::before {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 244, 200, 0.18) 18%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 224, 130, 0.28) 82%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: button-shine-gold 4.4s ease-in-out infinite;
}

.action-button--primary:hover {
    background: linear-gradient(180deg, #ffd38a 0%, #f3af57 52%, #e38c39 100%);
    border-color: #f2bf73;
    box-shadow:
            0 1px 0 rgba(255, 248, 225, 0.34) inset,
            0 0 0 1px rgba(243, 174, 75, 0.14),
            0 12px 26px rgba(222, 127, 47, 0.34);
    transform: translateY(-1px);
}

.action-button--primary:active {
    transform: translateY(0);
    box-shadow:
            0 1px 0 rgba(255, 248, 225, 0.2) inset,
            0 6px 14px rgba(222, 127, 47, 0.24);
}

.action-button--primary:focus-visible {
    outline: none;
    box-shadow:
            0 0 0 3px rgba(243, 174, 75, 0.24),
            0 12px 26px rgba(222, 127, 47, 0.34);
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .action-button,
    .action-button::before {
        animation: none !important;
        transition: none;
    }

    .action-button:hover,
    .action-button:active {
        transform: none;
    }
}

/* Tablet */

@media (max-width: 960px) {
    .content-center {
        gap: 10px;
    }

    .action-button {
        min-height: 40px;
        padding: 0 18px;
        font-size: 13px;
        border-radius: 9px;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .content-center {
        width: 100%;
        justify-content: stretch;
        gap: 8px;
    }

    .action-button {
        flex: 1 1 calc(50% - 4px);
        width: 60%;
        padding: 17px;
        border-radius: 8px;
        margin-bottom: 1rem;
        font-size: 120%;
    }
}

/* Small mobile */

@media (max-width: 420px) {
    .content-center {
        flex-direction: column;
        align-items: stretch;
    }

    .action-button {
        flex: 1 1 100%;
    }
}

@keyframes button-shine-gold {
    0% {
        left: -145%;
        opacity: 0;
    }
    8% {
        opacity: 0.9;
    }
    30% {
        left: 145%;
        opacity: 0.9;
    }
    31% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}

@keyframes button-shine-green {
    0% {
        left: -145%;
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    36% {
        left: 145%;
        opacity: 0.95;
    }
    37% {
        left: 145%;
        opacity: 0;
    }
    100% {
        left: 145%;
        opacity: 0;
    }
}


.toc-panel {
    margin: 32px 0;
    text-align: center;
}

.toc-panel__details {
    display: block;
}

.toc-panel__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    cursor: pointer;
    list-style: none;
}

.toc-panel__summary::-webkit-details-marker {
    display: none;
}

.toc-panel__summary-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 44px 0 16px;
    border-radius: 8px 8px 0 0;
    color: #ffffff;
    background: linear-gradient(180deg, #6ea8d1 0%, #2f6f9f 100%);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.toc-panel__summary-label::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 14px;
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
}

.toc-panel__details[open] .toc-panel__summary-label::after {
    content: "−";
}

.toc-panel__list {
    margin: 0;
    padding: 22px;
    text-align: left;
    list-style: none;
    border: 1px solid rgba(114, 172, 214, 0.8);
    border-radius: 14px;
    background: rgba(2, 12, 40, 0.88);
}

.toc-panel__list li + li {
    margin-top: 12px;
}

.toc-panel__list a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: white;
    text-decoration: none;
    line-height: 1.45;
}

.toc-panel__list a::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #73c8ef;
    transform: translateY(-50%);
}

.toc-panel__list a:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .toc-panel {
        margin: 24px 0;
    }

    .toc-panel__summary-label {
        min-height: 38px;
        padding: 0 38px 0 14px;
        font-size: 14px;
    }

    .toc-panel__summary-label::after {
        right: 12px;
        font-size: 16px;
    }

    .toc-panel__list {
        padding: 16px;
        border-radius: 12px;
    }

    .toc-panel__list li + li {
        margin-top: 10px;
    }

    .toc-panel__list a {
        font-size: 15px;
    }
}

.content-table-wrap {
    margin: 24px 0 32px;
    border: 1px solid rgba(114, 172, 214, 0.28);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(17, 49, 74, 0.96) 0%, rgba(9, 25, 39, 0.98) 100%);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.28),
            0 1px 0 rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
}

.content-table-wrap table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #eef8ff;
    font-size: 15px;
    line-height: 1.45;
}

.content-table-wrap thead {
    position: relative;
    z-index: 1;
}

.content-table-wrap thead th {
    position: relative;
    padding: 18px 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    background:
            linear-gradient(180deg, rgba(73, 124, 171, 0.98) 0%, rgba(33, 74, 108, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.content-table-wrap thead th:first-child {
    border-top-left-radius: 2px;
}

.content-table-wrap thead th:last-child {
    border-top-right-radius: 2px;
}

.content-table-wrap thead th:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    width: 1px;
    height: calc(100% - 28px);
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(116, 190, 232, 0.38) 18%,
            rgba(116, 190, 232, 0.55) 50%,
            rgba(116, 190, 232, 0.38) 82%,
            rgba(255, 255, 255, 0) 100%
    );
}

.content-table-wrap tbody tr {
    transition: background-color 0.22s ease;
}

.content-table-wrap tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.content-table-wrap tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.035);
}

.content-table-wrap tbody tr:hover {
    background: rgba(114, 172, 214, 0.10);
}

.content-table-wrap tbody th,
.content-table-wrap tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-table-wrap tbody tr:last-child th,
.content-table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.content-table-wrap tbody th {
    width: 38%;
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.025);
}

.content-table-wrap tbody td {
    color: #d9e2ff;
}

@media (max-width: 767px) {
    .content-table-wrap thead th,
    .content-table-wrap tbody th,
    .content-table-wrap tbody td {
        padding: 13px 14px;
    }

    .content-table-wrap table {
        font-size: 14px;
    }
}

.content-table-wrap thead th {
    overflow: hidden;
}

.content-table-wrap thead th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(125, 193, 234, 0.65) 50%,
            rgba(255, 255, 255, 0) 100%
    );
}

.site-footer {
    margin-top: 56px;
    padding-top: 42px;
    background:
            linear-gradient(180deg, rgba(5, 13, 38, 0.96) 0%, rgba(2, 8, 28, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .container {
    max-width: 1200px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 80px;
    align-items: start;
    justify-content: center;
    padding-bottom: 34px;
}

.site-footer__column {
    text-align: center;
}

.site-footer__title {
    margin: 0 0 22px;
    color: #f2f7fb;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__menu li + li {
    margin-top: 16px;
    line-height: 1.2;
}

.site-footer__menu a {
    text-decoration: none;
    font-size: 16px;
    transition:
            color 0.22s ease,
            opacity 0.22s ease;
    line-height: 1.2;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.site-footer__bottom {
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .site-footer {
        margin: 42px 0;
        padding-top: 32px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 26px;
    }

    .site-footer__title {
        margin-bottom: 16px;
        font-size: 17px;
    }

    .site-footer__menu li + li {
        margin-top: 12px;
    }

    .site-footer__menu a {
        font-size: 15px;
    }

    .site-footer__bottom {
        padding: 18px 0 22px;
    }

    .site-footer__bottom p {
        font-size: 14px;
    }
}

figure img {
    max-width: 700px;
    height: auto;
    margin: 1.5rem auto;
}


#faq {
    margin-top: 48px;
}

#faq h2 {
    margin: 0 0 24px;
}

#faq details {
    margin: 0 0 14px;
    border: 1px solid rgba(114, 172, 214, 0.22);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 54, 84, 0.96) 0%, rgba(9, 28, 44, 0.98) 100%);
    box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.18),
            0 1px 0 rgba(255, 255, 255, 0.03) inset;
    overflow: hidden;
    transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            background 0.25s ease;
}

#faq details:hover {
    border-color: rgba(137, 202, 239, 0.34);
    box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.22),
            0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

#faq details[open] {
    border-color: rgba(245, 176, 76, 0.42);
    background: linear-gradient(180deg, rgba(21, 61, 93, 0.98) 0%, rgba(10, 28, 44, 1) 100%);
    box-shadow:
            0 14px 30px rgba(0, 0, 0, 0.24),
            0 0 0 1px rgba(245, 176, 76, 0.08);
}

#faq summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 56px 18px 18px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq summary:hover {
    color: #f7c87a;
}

#faq summary span {
    display: none;
}

#faq summary::before {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(180deg, rgba(245, 176, 76, 0.95) 0%, rgba(222, 127, 47, 0.95) 100%);
    box-shadow:
            0 4px 12px rgba(222, 127, 47, 0.28),
            0 1px 0 rgba(255, 255, 255, 0.15) inset;
    transform: translateY(-50%);
    transition:
            transform 0.25s ease,
            background 0.25s ease,
            box-shadow 0.25s ease;
}

#faq details[open] summary::before {
    content: "−";
    background: linear-gradient(180deg, rgba(218, 82, 72, 0.95) 0%, rgba(182, 51, 44, 0.95) 100%);
    box-shadow:
            0 4px 12px rgba(182, 51, 44, 0.30),
            0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

#faq details p {
    margin: 0;
    padding: 0 18px 18px;
    color: #d7e0ff;
    font-size: 15px;
    line-height: 1.7;
}

#faq details p strong {
    color: #ffffff;
    font-weight: 700;
}

#faq details[open] p {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
}

#faq figure {
    margin: 28px 0 24px;
}

#faq figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(114, 172, 214, 0.24);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

#faq .content-center {
    margin: 24px 0 18px;
}

#faq > p:last-child {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.mobile { display: none}

@media (max-width: 767px) {
    #faq {
        margin-top: 36px;
    }

    #faq h2 {
        margin-bottom: 18px;
    }

    #faq details {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    #faq summary {
        padding: 15px 50px 15px 14px;
        font-size: 15px;
        line-height: 1.45;
    }

    #faq summary::before {
        right: 14px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    #faq details p {
        padding: 0 14px 14px;
        font-size: 14px;
        line-height: 1.65;
    }

    #faq details[open] p {
        padding-top: 14px;
    }

    #faq figure {
        margin: 22px 0 18px;
    }
    .mobile { display: block}
}


section ul {
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

section  ul li {
    position: relative;
    margin: 0 0 14px;
    padding: 4px 16px 0px 48px;
    color: #dbe4ff;
    line-height: 1.65;
}

section  ul li:last-child {
    margin-bottom: 0;
}

section  ul li::before {
    content: "🪙";
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(243, 174, 75, 0.28));
}

section  ul li:hover {
    color: #f7c87a;
}

section  ul strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    section  ul li {
        padding: 1px 14px 0px 42px;
        font-size: 15px;
    }

    section  ul li::before {
        top: 13px;
        left: 14px;
        font-size: 16px;
    }

    figure img {
        width: 100%;
    }
    figure  {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 960px) {
    body.nav-lock {
        overflow: hidden;
        touch-action: none;
    }

    .site-header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        min-height: 72px;
        row-gap: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-brand {
        grid-column: 1 / 2;
    }

    .nav-toggle {
        position: relative;
        z-index: 1102;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2 / 3;
        justify-self: end;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 1090;
        background: rgba(0, 0, 0, 0.48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
                opacity 0.3s ease,
                visibility 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .site-header.nav-open + .mobile-nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1101;
        display: block;
        width: min(360px, 88vw);
        height: 100dvh;
        margin: 0;
        padding: 92px 20px 24px;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        background: linear-gradient(180deg, #194365 0%, #0c2235 100%);
        box-shadow: -18px 0 36px rgba(0, 0, 0, 0.34);
        opacity: 1;
        visibility: visible;
        transform: translateX(100%);
        transition: transform 0.34s ease;
        overflow-y: auto;
        justify-self: auto;
    }

    .site-header.nav-open .site-nav {
        transform: translateX(0);
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .menu__item {
        width: 100%;
    }

    .menu__item a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 52px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        transition:
                background-color 0.25s ease,
                border-color 0.25s ease,
                transform 0.25s ease;
    }

    .menu__item a:hover,
    .menu__item a:focus-visible {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 170, 40, 0.28);
        transform: translateX(-2px);
    }

    .header-actions {
        display: none;
    }

    .mobile {
        display: block;
    }

    .nav-toggle__line {
        transition:
                transform 0.25s ease,
                opacity 0.25s ease;
    }

    .site-header.nav-open .nav-toggle__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.nav-open .nav-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .nav-toggle__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (min-width: 961px) {
    .mobile-nav-overlay {
        display: none;
    }

    .mobile {
        display: none;
    }
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #112f49;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;
    min-height: 60px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.site-brand__image {
    display: block;
    width: auto;
    height: 40px;
}

.site-nav--desktop {
    justify-self: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 100%;
    font-weight: 500;
    transition: color 0.25s ease;
}

.menu__item a:hover {
    color: #f7c87a;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0px auto;
    background: #ffffff;
    border-radius: 999px;
    transition:
            transform 0.25s ease,
            opacity 0.25s ease;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(420px, 100%);
    height: 100dvh;
    padding: 22px 24px 28px;
    background: linear-gradient(180deg, #173b58 0%, #0c2235 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.34s ease;
    overflow-y: auto;
}

.mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 56px;
}

.mobile-drawer__brand {
    display: inline-flex;
    align-items: center;
}

.mobile-drawer__brand img {
    display: block;
    width: auto;
    height: 40px;
}

.mobile-drawer__close {
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.mobile-drawer__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-drawer__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-drawer__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer__nav {
    width: 100%;
}

.mobile-drawer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.mobile-drawer__menu li + li {
    margin-top: 26px;
}

.mobile-drawer__menu a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
    transition:
            color 0.22s ease,
            transform 0.22s ease;
}

.mobile-drawer__menu a:hover,
.mobile-drawer__menu a:focus-visible {
    color: #f7c87a;
    transform: translateX(-2px);
}

body.nav-lock {
    overflow: hidden;
    touch-action: none;
}

body.nav-lock .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.nav-lock .mobile-drawer {
    transform: translateX(0);
}

@media (max-width: 960px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
        min-height: 72px;
    }

    .site-nav--desktop,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
    }
}

@media (min-width: 961px) {
    .mobile-nav-overlay,
    .mobile-drawer {
        display: none;
    }
}

@media (max-width: 575px) {
    .mobile-drawer {
        width: 100%;
        padding: 20px 18px 24px;
    }

    .mobile-drawer__top {
        margin-bottom: 48px;
    }

    .mobile-drawer__menu li + li {
        margin-top: 24px;
    }

    .mobile-drawer__menu a {
        font-size: 16px;

    }
    .mobile-drawer__menu {
        line-height: 0.75;
    }

    .mobile-drawer__menu a:hover {
        color: #f7c87a;
    }

    .mobile-drawer__close {
        width: 44px;
        height: 44px;
    }
}


.content-table-wrap {
    margin: 24px 0 32px;
    border: 1px solid rgba(114, 172, 214, 0.28);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(17, 49, 74, 0.96) 0%, rgba(9, 25, 39, 0.98) 100%);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.28),
            0 1px 0 rgba(255, 255, 255, 0.04) inset;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.content-table-wrap table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    color: #eef8ff;
    font-size: 15px;
    line-height: 1.45;
}

.mobile-bottombar {display: none}

.header-actions a{
    padding: 11px 26px;
}

@media (max-width: 768px) {
    .content-table-wrap {
        margin: 20px 0 28px;
        border-radius: 12px;
    }

    .content-table-wrap table {
        min-width: 640px;
    }

    .mobile-bottombar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        gap: 10px;
        background: rgba(12, 34, 53, .82);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,255,255,.10);
        padding: 18px 12px 0;
    }

    .mobile-bottombar button {
        font-size: 100%;
        padding: 15px;
    }

    .site-footer p {
        display: none;
    }

    div.site-footer__column:nth-child(2) {
        margin-top: -19px;
        margin-bottom: 40px;
    }
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.site-footer__brand img, .site-footer__title {
    display: block;
    width: auto;
    height: 40px;
    margin-bottom: 1rem;
}


.breadcrumbs {
    margin: 0 0 24px;
    padding: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px 16px;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs li + li::before {
    content: "›";
    display: inline-block;
    margin: 0 2px 0 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 14px;
    line-height: 1;
}

.breadcrumbs a {
    color: #f3ae4b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: #ffd293;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumbs span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .breadcrumbs {
        margin-bottom: 20px;
    }

    .breadcrumbs ol {
        padding: 10px 12px;
        border-radius: 10px;
        gap: 6px;
    }

    .breadcrumbs li {
        font-size: 13px;
    }

    .breadcrumbs li + li::before {
        font-size: 13px;
    }
}
.breadcrumbs span {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(243, 174, 75, 0.18);
}

.site-footer__top {
    margin-bottom: 32px;
}

.site-footer__description {
    max-width: 720px;
    margin: 12px 0 0;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.site-footer__title {
    margin: 0 0 14px;
    font-weight: 700;
}

.site-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__menu li + li {
    margin-top: 10px;
}

.site-footer__menu a {
    text-decoration: none;
}

@media (max-width: 900px) {
    .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer__links {
        grid-template-columns: 1fr;
    }
}

.site-nav--desktop {
    display: flex;
    align-items: center;
}

.menu--top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__item {
    position: relative;
}

.menu__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu__link:hover,
.menu__link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.menu__caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    margin-top: -2px;
}

.menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(73, 124, 171, 0.98) 0%, rgba(33, 74, 108, 0.98) 100%);
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(9, 20, 44, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 200;
}

.menu__dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__dropdown-item + .menu__dropdown-item {
    margin-top: 4px;
}

.menu__dropdown-link {
    display: block;
    padding: 12px 14px;
    color: #eef8ff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu__dropdown-link:hover,
.menu__dropdown-link:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.menu__item--has-dropdown:hover > .menu__dropdown,
.menu__item--has-dropdown:focus-within > .menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .site-nav--desktop {
        display: none;
    }
}
