/* variables */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --site-width: 1300px;
    --page-bg: #120d0c;
    --panel-bg: #191210;
    --panel-soft: #201715;
    --panel-strong: #261a17;
    --text-main: #f3e8da;
    --text-soft: #c9b9a4;
    --text-muted: #9d8770;
    --line-main: rgba(243, 232, 218, 0.14);
    --line-soft: rgba(243, 232, 218, 0.08);
    --accent-main: #f0c79b;
    --accent-deep: #b47e4f;
    --accent-contrast: #1a120f;
    --veil-dark: linear-gradient(
        90deg,
        rgba(18, 13, 12, 0.92) 0%,
        rgba(18, 13, 12, 0.64) 42%,
        rgba(18, 13, 12, 0.18) 100%
    );
    --shadow-main: 0 26px 70px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 20px 36px rgba(0, 0, 0, 0.26);
    --radius-large: clamp(1.25rem, 1rem + 1vw, 2rem);
    --radius-medium: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
    --radius-small: clamp(0.35rem, 0.3rem + 0.2vw, 0.5rem);
    --space-2xs: clamp(0.375rem, 0.32rem + 0.22vw, 0.55rem);
    --space-xs: clamp(0.625rem, 0.55rem + 0.3vw, 0.875rem);
    --space-sm: clamp(0.875rem, 0.75rem + 0.45vw, 1.25rem);
    --space-md: clamp(1rem, 0.8rem + 0.7vw, 1.5rem);
    --space-lg: clamp(1.25rem, 0.95rem + 1vw, 2rem);
    --space-xl: clamp(1.75rem, 1.35rem + 1.3vw, 2.75rem);
    --space-2xl: clamp(2.25rem, 1.8rem + 1.8vw, 4rem);
    --space-3xl: clamp(3rem, 2.4rem + 2.4vw, 5rem);
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --text-sm: clamp(0.9rem, 0.82rem + 0.24vw, 1rem);
    --text-md: clamp(1rem, 0.92rem + 0.28vw, 1.125rem);
    --text-lg: clamp(1.15rem, 1.02rem + 0.5vw, 1.5rem);
    --text-xl: clamp(1.4rem, 1.18rem + 0.9vw, 2rem);
    --text-hero: clamp(2.6rem, 1.7rem + 3.6vw, 5rem);
    --button-height: clamp(3rem, 2.7rem + 0.8vw, 3.5rem);
    --control-size: clamp(2.8rem, 2.55rem + 0.8vw, 3.4rem);
    --nav-gap: clamp(0.85rem, 0.6rem + 0.9vw, 1.7rem);
    --track-gap: clamp(0.9rem, 0.7rem + 0.7vw, 1.45rem);
    --tile-width: clamp(12rem, 10.4rem + 5.8vw, 14.75rem);
    --timing-main: 180ms ease;
}

/* base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at top,
            rgba(180, 126, 79, 0.18),
            transparent 36%
        ),
        linear-gradient(180deg, #160f0d 0%, #110d0c 100%);
    color: var(--text-main);
}

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

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

button {
    font: inherit;
}

p,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

.page-frame {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - (var(--space-lg) * 2)), var(--site-width));
    margin: 0 auto;
}

.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--button-height);
    padding: 0 var(--space-lg);
    border-radius: var(--radius-small);
    border: 1px solid transparent;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition:
        background-color var(--timing-main),
        border-color var(--timing-main),
        color var(--timing-main),
        transform var(--timing-main);
}

.action:hover,
.action:focus-visible,
.playchip:hover,
.playchip:focus-visible,
.gallery-link:hover,
.gallery-link:focus-visible,
.gallery-button:hover,
.gallery-button:focus-visible {
    transform: translateY(-1px);
}

.action:focus-visible,
.playchip:focus-visible,
.gallery-link:focus-visible,
.gallery-button:focus-visible,
.menu-switch:focus-visible {
    outline: 2px solid var(--accent-main);
    outline-offset: 2px;
}

.action-soft {
    border-color: var(--line-main);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.action-soft:hover,
.action-soft:focus-visible {
    border-color: rgba(240, 199, 155, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.action-strong {
    background: linear-gradient(180deg, #f4cfab 0%, #deb07f 100%);
    color: var(--accent-contrast);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.action-strong:hover,
.action-strong:focus-visible {
    background: linear-gradient(180deg, #f8d9b8 0%, #e4b584 100%);
}

/* header */
.masthead {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(18, 13, 12, 0.78);
    border-bottom: 1px solid var(--line-soft);
}

.masthead-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-height: clamp(4.5rem, 4rem + 1vw, 5.25rem);
}

.brand-unit {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.linkband {
    margin-left: auto;
}

.linkband-list {
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
}

.linkband-list a,
.drawer-list a,
.siteend-column a {
    color: var(--text-soft);
    font-size: var(--text-sm);
    transition: color var(--timing-main);
}

.linkband-list a:hover,
.linkband-list a:focus-visible,
.drawer-list a:hover,
.drawer-list a:focus-visible,
.siteend-column a:hover,
.siteend-column a:focus-visible {
    color: var(--text-main);
}

.actionset {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-md);
}

.menu-switch {
    display: none;
    margin-left: auto;
    width: var(--control-size);
    height: var(--control-size);
    padding: 0;
    border: 1px solid var(--line-main);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.26rem;
    cursor: pointer;
}

.menu-switch span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform var(--timing-main),
        opacity var(--timing-main);
}

.menu-switch[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.39rem) rotate(45deg);
}

.menu-switch[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-switch[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.39rem) rotate(-45deg);
}

.drawer {
    display: grid;
    grid-template-rows: 0fr;
    transition:
        grid-template-rows var(--timing-main),
        border-color var(--timing-main);
    border-top: 1px solid transparent;
}

.drawer[data-open="true"] {
    grid-template-rows: 1fr;
    border-top-color: var(--line-soft);
}

.drawer-inner {
    overflow: hidden;
    display: grid;
    gap: var(--space-lg);
    padding-block: 0;
    transition: padding var(--timing-main);
}

.drawer[data-open="true"] .drawer-inner {
    padding-block: var(--space-lg);
}

.drawer-list {
    display: grid;
    gap: var(--space-md);
}

.drawer-actions {
    display: none;
    gap: var(--space-sm);
}

/* hero */
.showcase {
    padding: var(--space-xl) 0 var(--space-lg);
}

.showcase-card {
    position: relative;
    isolation: isolate;
    min-height: clamp(24rem, 19rem + 18vw, 33rem);
    border-radius: var(--radius-large);
    overflow: hidden;
    border: 1px solid rgba(240, 199, 155, 0.16);
    background: var(--panel-strong);
    box-shadow: var(--shadow-main);
}

.showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72%;
}

.showcase-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(18, 13, 12, 0.08) 0%,
            rgba(18, 13, 12, 0.3) 100%
        ),
        var(--veil-dark);
}

.showcase-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: var(--space-md);
    width: min(100%, 34rem);
    min-height: inherit;
    padding: var(--space-3xl);
}

.showcase-kicker {
    font-size: var(--text-xl);
    font-weight: 800;
}

.showcase-value {
    font-family: "Inter", sans-serif;
    font-size: var(--text-hero);
    line-height: 0.94;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.showcase-note {
    max-width: 28rem;
    color: var(--text-main);
    font-size: var(--text-lg);
    line-height: 1.45;
}

.showcase-cta {
    justify-self: start;
    margin-top: var(--space-xs);
}

/* payments */
.payments-strip {
    padding: var(--space-lg) 0;
}

.payments-shell {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    padding: var(--space-lg);
}

.payments-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 0.6rem + 1.2vw, 2rem);
    flex-wrap: wrap;
}

.payments-list img {
    height: clamp(1.5rem, 1.3rem + 0.7vw, 2rem);
    width: auto;
    opacity: 0.92;
}

/* games slider */
.gallery {
    padding: var(--space-lg) 0 var(--space-3xl);
}

.gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.gallery-titlewrap,
.gallery-tools,
.gallery-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.gallery-mark {
    width: 1.5rem;
    height: 1.5rem;
    color: #e1432f;
}

.gallery-title {
    font-size: clamp(1.6rem, 1.35rem + 0.8vw, 2.1rem);
    font-weight: 800;
}

.gallery-link {
    min-height: var(--control-size);
    padding: 0 var(--space-lg);
    border-radius: var(--radius-small);
    border: 1px solid var(--line-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: var(--text-sm);
    font-weight: 800;
    transition:
        border-color var(--timing-main),
        background-color var(--timing-main),
        transform var(--timing-main);
}

.gallery-link:hover,
.gallery-link:focus-visible {
    border-color: rgba(240, 199, 155, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.gallery-button {
    width: var(--control-size);
    height: var(--control-size);
    border-radius: var(--radius-small);
    border: 1px solid var(--line-main);
    background: transparent;
    color: var(--accent-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color var(--timing-main),
        background-color var(--timing-main),
        opacity var(--timing-main),
        transform var(--timing-main);
}

.gallery-button svg {
    width: 1.05rem;
    height: 1.05rem;
}

.gallery-button:disabled {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

.gallery-window {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: var(--track-gap);
    will-change: transform;
    transition: transform 260ms ease;
}

.tile {
    flex: 0 0 var(--tile-width);
}

.tile-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-small);
    overflow: hidden;
    background: #2a1d19;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    transform: translateY(0);
    transition:
        transform var(--timing-main),
        box-shadow var(--timing-main),
        border-color var(--timing-main);
}

.tile-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-tag {
    position: absolute;
    top: var(--space-xs);
    left: var(--space-xs);
    z-index: 2;
    padding: 0.38rem 0.58rem;
    border-radius: var(--radius-small);
    background: #c5efff;
    color: #10242e;
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
}

.tile-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 12, 11, 0.24) 0%,
        rgba(16, 12, 11, 0.84) 100%
    );
    opacity: 0;
    transition: opacity var(--timing-main);
}

.tile-action {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity var(--timing-main),
        transform var(--timing-main);
}

.playchip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(2.7rem, 2.45rem + 0.7vw, 3.1rem);
    padding: 0 var(--space-lg);
    border-radius: var(--radius-small);
    background: linear-gradient(180deg, #f4cfab 0%, #d8a875 100%);
    color: var(--accent-contrast);
    font-size: var(--text-sm);
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    transition:
        transform var(--timing-main),
        background-color var(--timing-main);
}

.tile-media:hover,
.tile-media:focus-within {
    transform: translateY(-0.25rem);
    border-color: rgba(240, 199, 155, 0.2);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.tile-media:hover .tile-cover,
.tile-media:focus-within .tile-cover,
.tile-media:hover .tile-action,
.tile-media:focus-within .tile-action {
    opacity: 1;
}

.tile-media:hover .tile-action,
.tile-media:focus-within .tile-action {
    transform: scale(1);
}

/* footer */
.siteend {
    border-top: 1px solid var(--line-soft);
    background:
        radial-gradient(
            circle at top left,
            rgba(180, 126, 79, 0.12),
            transparent 28%
        ),
        var(--panel-bg);
}

.siteend-shell {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.siteend-top {
    display: grid;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--line-soft);
}

.siteend-brand {
    display: grid;
    gap: var(--space-sm);
}

.siteend-copy,
.siteend-base p {
    color: var(--text-soft);
    font-size: var(--text-sm);
    line-height: 1.65;
}

.siteend-warning {
    color: var(--text-main);
    font-size: var(--text-sm);
    line-height: 1.65;
}

.siteend-links {
    display: grid;
    gap: var(--space-lg);
}

.siteend-column {
    display: grid;
    gap: var(--space-sm);
}

.siteend-heading {
    font-size: var(--text-md);
    font-weight: 800;
}

.siteend-column ul {
    display: grid;
    gap: var(--space-xs);
}

.siteend-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--line-soft);
}

.siteend-badges img {
    height: clamp(1.9rem, 1.6rem + 0.8vw, 2.5rem);
    width: auto;
    opacity: 0.95;
}

.siteend-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-lg);
}

/* article pages */
.page-template {
    background:
        radial-gradient(circle at top right, rgba(240, 199, 155, 0.12), transparent 26%),
        radial-gradient(circle at top left, rgba(180, 126, 79, 0.11), transparent 24%),
        linear-gradient(180deg, #140f0d 0%, #100c0b 100%);
}

.page-main {
    padding-bottom: var(--space-3xl);
}

.page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
}

.page-hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 199, 155, 0.16);
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(38, 26, 23, 0.94), rgba(20, 14, 12, 0.94));
    box-shadow: var(--shadow-main);
}

.page-hero-panel::before,
.page-hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.page-hero-panel::before {
    top: -20%;
    right: -8%;
    width: clamp(12rem, 18vw, 18rem);
    height: clamp(12rem, 18vw, 18rem);
    background: radial-gradient(circle, rgba(240, 199, 155, 0.2), transparent 68%);
}

.page-hero-panel::after {
    inset: auto auto -35% -10%;
    width: clamp(14rem, 24vw, 22rem);
    height: clamp(14rem, 24vw, 22rem);
    background: radial-gradient(circle, rgba(180, 126, 79, 0.16), transparent 70%);
}

.page-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-md);
    padding: clamp(1.5rem, 1.1rem + 2vw, 3rem);
}

.page-eyebrow {
    color: var(--accent-main);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero-copy h1,
.article-flow h1 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(2.3rem, 1.7rem + 2vw, 4.25rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.page-lead {
    color: var(--text-main);
    font-size: var(--text-md);
    line-height: 1.78;
    max-width: 56rem;
}

.page-hero-copy a {
    color: #ffe0bd;
    text-decoration: underline;
    text-decoration-color: rgba(255, 224, 189, 0.68);
    text-underline-offset: 0.18em;
}

.page-hero-copy a:hover,
.page-hero-copy a:focus-visible {
    color: #fff1df;
    text-decoration-color: rgba(255, 241, 223, 0.95);
}

.page-hero--service .page-hero-copy {
    min-height: clamp(14rem, 11rem + 7vw, 18rem);
    align-content: center;
}

.page-hero--content .page-hero-copy,
.page-hero--home .page-hero-copy {
    min-height: clamp(18rem, 15rem + 10vw, 25rem);
    align-content: end;
}

.page-hero--home .page-hero-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(90deg, rgba(18, 13, 12, 0.94) 0%, rgba(18, 13, 12, 0.86) 42%, rgba(18, 13, 12, 0.78) 100%);
}

.page-hero--home .page-hero-copy {
    width: min(100%, 50rem);
}

.page-article {
    padding-bottom: var(--space-xl);
}

.article-shell {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-large);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
        rgba(19, 14, 12, 0.94);
    box-shadow: var(--shadow-card);
}

.article-shell--content {
    padding: clamp(1.2rem, 0.9rem + 1vw, 2rem);
}

.article-shell--service {
    padding: clamp(1.2rem, 1rem + 0.8vw, 1.8rem);
}

.article-flow {
    display: flow-root;
    color: var(--text-soft);
}

.article-flow > :first-child {
    margin-top: 0;
}

.article-flow > * {
    margin-top: 0;
}

.article-flow > * + * {
    margin-top: var(--space-md);
}

.article-flow h2,
.article-flow h3 {
    margin-bottom: 0;
    color: var(--text-main);
}

.article-flow h2 {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.7rem, 1.35rem + 1vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    padding-top: var(--space-sm);
}

.article-flow h3 {
    font-size: clamp(1.08rem, 1rem + 0.3vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
}

.article-flow p,
.article-flow li {
    font-size: var(--text-md);
    line-height: 1.78;
}

.article-flow ul {
    display: grid;
    gap: var(--space-xs);
    list-style: none;
    padding-left: 0;
}

.article-flow ul li {
    position: relative;
    padding-left: 1.25rem;
}

.article-flow ul li::before {
    content: "";
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f4cfab 0%, #cf9866 100%);
    box-shadow: 0 0 0 0.2rem rgba(240, 199, 155, 0.08);
}

.article-flow strong {
    color: var(--text-main);
}

.article-flow a {
    color: var(--accent-main);
    text-decoration: underline;
    text-decoration-color: rgba(240, 199, 155, 0.4);
    text-underline-offset: 0.18em;
}

.article-flow a:hover,
.article-flow a:focus-visible {
    color: #ffd8b2;
    text-decoration-color: rgba(255, 216, 178, 0.85);
}

.article-media {
    margin: var(--space-lg) 0;
}

.article-media-link {
    display: block;
}

.article-media img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-medium) - 0.1rem);
    border: 1px solid rgba(240, 199, 155, 0.14);
    box-shadow: var(--shadow-card);
}

.article-media--feature .article-media-link {
    overflow: hidden;
    border-radius: var(--radius-medium);
}

.article-media--aside {
    float: right;
    width: min(100%, 23rem);
    margin: 0 0 var(--space-lg) var(--space-lg);
}

.article-media--aside .article-media-link {
    display: block;
}

.article-table-wrap {
    margin: var(--space-lg) 0;
    border: 1px solid var(--line-main);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        rgba(30, 21, 19, 0.95);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.article-table-scroll {
    overflow-x: auto;
}

.article-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 36rem;
}

.article-table-wrap th,
.article-table-wrap td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: top;
    text-align: left;
    font-size: var(--text-sm);
    line-height: 1.6;
}

.article-table-wrap th {
    color: var(--text-main);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
}

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

.article-toc {
    width: min(100%, 42rem);
    margin-top: var(--space-sm);
    border: 1px solid rgba(240, 199, 155, 0.18);
    border-radius: var(--radius-medium);
    background: rgba(16, 12, 11, 0.55);
    overflow: hidden;
}

.article-toc-title {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 1rem 1.1rem;
    color: var(--text-main);
    font-size: var(--text-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
}

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

.article-toc-title::after {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--timing-main);
}

.article-toc[open] .article-toc-title::after {
    transform: rotate(-135deg) translateY(-0.1rem);
}

.article-toc nav {
    display: grid;
    gap: 0.7rem;
    padding: 0 1.1rem 1.1rem;
}

.article-toc nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: var(--text-sm);
}

.article-toc nav a:hover,
.article-toc nav a:focus-visible {
    color: var(--text-main);
}

.article-section--faq {
    margin-top: var(--space-2xl);
    padding: clamp(1.1rem, 1rem + 0.6vw, 1.6rem);
    border: 1px solid rgba(240, 199, 155, 0.12);
    border-radius: var(--radius-medium);
    background: linear-gradient(180deg, rgba(37, 26, 23, 0.88), rgba(19, 14, 12, 0.88));
}

.article-faq-title {
    margin: 0 0 var(--space-md);
}

.faq-group {
    display: grid;
    gap: 0.75rem;
}

.spoiler {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.spoiler-toggle {
    position: relative;
    margin: 0;
    padding: 1rem 3.5rem 1rem 1.1rem;
    color: var(--text-main);
    font-size: var(--text-md);
    font-weight: 700;
    line-height: 1.55;
    cursor: pointer;
}

.spoiler-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.15rem;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid var(--accent-main);
    border-bottom: 2px solid var(--accent-main);
    transform: translateY(-65%) rotate(45deg);
    transition: transform var(--timing-main);
}

.spoiler.is-open .spoiler-toggle::after {
    transform: translateY(-35%) rotate(-135deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.spoiler-content p {
    margin: 0;
    padding: 0 1.1rem 1rem;
    color: var(--text-soft);
}

.brand-unit figure,
.showcase-card > figure,
.payments-list figure,
.tile-media figure,
.siteend-logo figure,
.siteend-badges figure {
    margin: 0;
}

.payments-list figure img,
.siteend-badges figure img,
.brand-unit figure img,
.showcase-card > figure img,
.tile-media figure img {
    display: block;
}

/* media */
@media screen and (max-width: 960px) {
    .linkband,
    .actionset {
        display: none;
    }

    .menu-switch,
    .drawer-actions {
        display: inline-flex;
    }

    .drawer-actions {
        flex-direction: column;
    }

    .gallery-head,
    .siteend-base {
        align-items: flex-start;
    }

    .article-media--aside {
        float: none;
        width: 100%;
        max-width: none;
        margin: var(--space-lg) 0;
    }
}

@media screen and (min-width: 961px) {
    .drawer {
        display: none;
    }

    .siteend-top {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
    }

    .siteend-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 720px) {
    .gallery-link {
        display: none;
    }

    .payments-list {
        justify-content: flex-start;
    }

    .article-shell--content,
    .article-shell--service {
        padding: 1rem;
    }

    .article-table-wrap table {
        min-width: 31rem;
    }

    .article-toc-title,
    .spoiler-toggle,
    .spoiler-content p {
        padding-left: 0.95rem;
        padding-right: 0.95rem;
    }
}
