@font-face {
    font-family: "MwSora";
    src: url("/theme/fonts/sora-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MwSora";
    src: url("/theme/fonts/sora-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MwManrope";
    src: url("/theme/fonts/manrope-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "MwManrope";
    src: url("/theme/fonts/manrope-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --mw-bg: #0b0e1b;
    --mw-bg-soft: #12182c;
    --mw-bg-card: #171f38;
    --mw-line: rgba(120, 140, 210, 0.16);
    --mw-text: #eef2ff;
    --mw-text-dim: #9aa6cb;
    --mw-gold: #fcc54e;
    --mw-gold-deep: #d9a52f;
    --mw-blue: #4e6afc;
    --mw-blue-deep: #3550d4;
    --mw-radius: 14px;
    --mw-radius-sm: 10px;
    --mw-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    --mw-dock-h: 68px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "MwManrope", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--mw-text);
    background:
        radial-gradient(circle at 12% -10%, rgba(78, 106, 252, 0.18), transparent 42%),
        radial-gradient(circle at 88% 0%, rgba(252, 197, 78, 0.08), transparent 36%),
        var(--mw-bg);
}

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

a {
    color: inherit;
}

.mw-chrome {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(11, 14, 27, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--mw-line);
}

.mw-chrome__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.mw-chrome__brand--empty {
    min-width: 1px;
}

.mw-brand-link__img {
    width: auto;
    height: 32px;
}

.mw-brand-link__text {
    font-family: "MwSora", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mw-chrome__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 12px;
    font-family: "MwSora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.mw-btn--ghost {
    background: rgba(78, 106, 252, 0.18);
    border-color: rgba(78, 106, 252, 0.35);
    color: #dbe4ff;
}

.mw-btn--ghost:hover {
    background: rgba(78, 106, 252, 0.28);
}

.mw-btn--gold {
    background: linear-gradient(180deg, #ffd978 0%, var(--mw-gold) 100%);
    color: #1a1200;
    box-shadow: 0 8px 22px rgba(252, 197, 78, 0.25);
}

.mw-btn--gold:hover {
    box-shadow: 0 10px 26px rgba(252, 197, 78, 0.35);
}

.mw-navstrip {
    border-top: 1px solid var(--mw-line);
    overflow-x: auto;
    scrollbar-width: none;
}

.mw-navstrip::-webkit-scrollbar {
    display: none;
}

.mw-navstrip__list {
    list-style: none;
    margin: 0;
    padding: 8px 16px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1440px;
    margin-inline: auto;
}

.mw-navstrip__cell {
    flex: 0 0 auto;
}

.mw-navstrip__link,
.mw-drawer__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--mw-text-dim);
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.mw-navstrip__link:hover,
.mw-drawer__link:hover {
    color: var(--mw-text);
    background: rgba(78, 106, 252, 0.12);
}

.mw-navstrip__link.is-active,
.mw-drawer__link.is-active {
    color: #fff;
    background: rgba(78, 106, 252, 0.22);
    border-color: rgba(78, 106, 252, 0.45);
    box-shadow: 0 0 0 1px rgba(78, 106, 252, 0.15), 0 8px 20px rgba(53, 80, 212, 0.18);
}

.mw-nav-glyph {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mw-navstrip__label {
    font-size: 13px;
    font-weight: 600;
}

.mw-drawer-scrim {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 14, 0.72);
    z-index: 180;
}

.mw-drawer-scrim[hidden] {
    display: none;
}

.mw-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    z-index: 190;
    background: linear-gradient(180deg, #141a31 0%, #0d1224 100%);
    border-left: 1px solid var(--mw-line);
    box-shadow: var(--mw-shadow);
    transform: translateX(105%);
    transition: transform 0.24s ease;
    overflow-y: auto;
    padding: 18px 16px calc(var(--mw-dock-h) + 18px);
}

.mw-drawer.is-open {
    transform: translateX(0);
}

.mw-drawer__brand {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mw-line);
}

.mw-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.mw-drawer__link {
    width: 100%;
    border-radius: var(--mw-radius-sm);
}

.mw-dock {
    display: none;
}

.mw-body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 20px 40px;
}

.mw-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 13px;
}

.mw-trail__link {
    color: var(--mw-text-dim);
    text-decoration: none;
}

.mw-trail__link:hover {
    color: var(--mw-gold);
}

.mw-trail__sep {
    color: rgba(154, 166, 203, 0.45);
}

.mw-hero-slider {
    position: relative;
    margin-bottom: 22px;
}

.mw-hero-slider__viewport {
    overflow: hidden;
    border-radius: var(--mw-radius);
    border: 1px solid var(--mw-line);
    background: var(--mw-bg-card);
}

.mw-hero-slider__track {
    display: flex;
    transition: transform 0.45s ease;
}

.mw-hero-slider__slide {
    flex: 0 0 100%;
    position: relative;
}

.mw-hero-slider__frame {
    aspect-ratio: 16 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1428;
}

.mw-hero-slider__frame picture,
.mw-hero-slider__frame img {
    width: 100%;
    height: 100%;
}

.mw-hero-slider__frame img {
    object-fit: contain;
    object-position: center;
}

.mw-hero-slider__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 20, 0.88) 100%);
}

.mw-hero-slider__title {
    font-family: "MwSora", sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700;
    margin-bottom: 6px;
}

.mw-hero-slider__text {
    margin: 0 0 12px;
    color: #d5dcf5;
    font-size: 14px;
}

.mw-hero-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.mw-hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(154, 166, 203, 0.35);
    cursor: pointer;
}

.mw-hero-slider__dot.is-active {
    background: var(--mw-gold);
    transform: scale(1.15);
}

.mw-games-block {
    margin-bottom: 28px;
}

.mw-games-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mw-games-block__title {
    font-family: "MwSora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mw-games-block__all {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(78, 106, 252, 0.14);
    border: 1px solid rgba(78, 106, 252, 0.28);
    color: #dbe4ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.mw-games-rail {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.mw-games-rail__inner {
    display: flex;
    gap: 14px;
    min-width: min-content;
}

.mw-slot-card {
    flex: 0 0 148px;
    width: 148px;
    border-radius: var(--mw-radius);
    background: var(--mw-bg-card);
    border: 1px solid var(--mw-line);
    overflow: hidden;
}

.mw-slot-card__visual {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #0f1428;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw-slot-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.mw-slot-card__actions {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    gap: 6px;
}

.mw-slot-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.mw-slot-card__btn--demo {
    background: rgba(78, 106, 252, 0.22);
    border: 1px solid rgba(78, 106, 252, 0.4);
    color: #eef2ff;
}

.mw-slot-card__btn--play {
    background: linear-gradient(180deg, #ffd978 0%, var(--mw-gold) 100%);
    color: #1a1200;
}

.mw-slot-card__name {
    padding: 10px 10px 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #d5dcf5;
}

.text-content {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 32px 28px;
    border-radius: var(--mw-radius);
    background: linear-gradient(180deg, rgba(23, 31, 56, 0.72) 0%, rgba(18, 24, 44, 0.88) 100%);
    border: 1px solid var(--mw-line);
    box-shadow: var(--mw-shadow);
}

.text-content h1,
.text-content h2,
.text-content h3 {
    font-family: "MwSora", sans-serif;
    color: #fff;
}

.text-content h1 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--mw-line);
    line-height: 1.3;
}

.text-content h2 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 32px 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-content h2::before {
    content: "";
    width: 4px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--mw-gold), var(--mw-blue));
    border-radius: 2px;
    flex-shrink: 0;
}

.text-content h3 {
    font-size: 18px;
    margin: 22px 0 10px;
    color: var(--mw-gold);
}

.text-content p {
    margin: 0 0 16px;
    color: #d5dcf5;
    line-height: 1.75;
    font-size: 15px;
}

.text-content a {
    color: var(--mw-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(252, 197, 78, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.text-content a:hover {
    color: #fff;
    border-color: var(--mw-gold);
}

.text-content img {
    border-radius: var(--mw-radius);
    margin: 20px 0;
    border: 1px solid var(--mw-line);
    box-shadow: var(--mw-shadow);
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.text-content th,
.text-content td {
    padding: 12px 14px;
    border: 1px solid var(--mw-line);
    text-align: left;
}

.text-content th {
    background: rgba(78, 106, 252, 0.14);
    font-family: "MwSora", sans-serif;
    font-size: 13px;
}

.text-content tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.text-content tbody tr:hover {
    background: rgba(78, 106, 252, 0.06);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border-radius: var(--mw-radius-sm);
    border: 1px solid var(--mw-line);
}

.table-wrapper table {
    margin: 0;
    min-width: 560px;
}

.text-content ul,
.text-content ol,
.list-container ul,
.list-container ol {
    margin: 14px 0 18px;
    padding-left: 22px;
}

.text-content li,
.list-container li {
    margin-bottom: 8px;
    line-height: 1.65;
    color: #d5dcf5;
}

.text-content li::marker,
.list-container li::marker {
    color: var(--mw-gold);
}

.list-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mw-line);
    border-radius: 12px;
    padding: 14px 14px 14px 8px;
    margin: 14px 0 18px;
}

.text-content blockquote,
.faq-wrapper,
.howto-wrapper {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: var(--mw-radius-sm);
    background: rgba(15, 20, 40, 0.75);
    border: 1px solid var(--mw-line);
}

.text-content blockquote {
    border-left: 3px solid var(--mw-gold);
    background: rgba(252, 197, 78, 0.05);
    font-style: italic;
    line-height: 1.7;
}

.faq-item-block {
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item-block:hover {
    border-color: rgba(78, 106, 252, 0.35);
}

.faq-question-block {
    padding: 14px 16px;
    background: rgba(78, 106, 252, 0.12);
    font-family: "MwSora", sans-serif;
    font-size: 14px;
}

.faq-answer-block {
    padding: 14px 16px;
    line-height: 1.7;
    color: #d5dcf5;
}

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

.howto-step-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--mw-line);
}

.howto-step-item:last-child {
    border-bottom: 0;
}

.mw-pay-block {
    margin: 28px 0;
}

.mw-pay-block__title {
    font-family: "MwSora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mw-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.mw-pay-item {
    padding: 14px 10px;
    border-radius: var(--mw-radius-sm);
    background: var(--mw-bg-card);
    border: 1px solid var(--mw-line);
    text-align: center;
}

.mw-pay-item img {
    max-height: 34px;
    margin: 0 auto 8px;
    object-fit: contain;
}

.mw-pay-item__name {
    font-size: 11px;
    font-weight: 700;
    color: #d5dcf5;
}

.bonuses-section {
    margin-bottom: 32px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(23, 31, 56, 0.95) 0%, rgba(18, 24, 44, 0.98) 100%);
    border: 1px solid var(--mw-line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(252, 197, 78, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(252, 197, 78, 0.1);
}

.bonus-image-wrapper {
    position: relative;
    overflow: hidden;
}

.bonus-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 13, 24, 0.85) 100%);
    pointer-events: none;
}

.bonus-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image {
    transform: scale(1.05);
}

.bonus-content {
    padding: 18px 18px 20px;
}

.bonus-name {
    font-family: "MwSora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}

.bonus-description {
    color: var(--mw-text-dim);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bonus-value {
    display: inline-block;
    color: #1a1200;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ffd978 0%, var(--mw-gold) 100%);
    border-radius: 999px;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(252, 197, 78, 0.2);
}

.bonus-category-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(78, 106, 252, 0.12);
    border: 1px solid rgba(78, 106, 252, 0.25);
    color: #b8c8ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bonus-terms {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--mw-line);
    font-size: 11px;
    color: var(--mw-text-dim);
    line-height: 1.5;
    opacity: 0.85;
}

.app-info-table-wrapper {
    position: relative;
    margin: 8px 0 32px;
    padding: 4px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(78, 106, 252, 0.25) 0%, rgba(252, 197, 78, 0.15) 50%, rgba(78, 106, 252, 0.1) 100%);
}

.mw-app-hero__glow {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(circle at 80% 20%, rgba(252, 197, 78, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.mw-app-hero__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mw-bg-card);
    border: 1px solid rgba(252, 197, 78, 0.35);
    border-radius: 14px;
    color: var(--mw-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.mw-app-hero__badge svg {
    width: 24px;
    height: 24px;
}

.app-info-table-container {
    position: relative;
    margin: 0;
    border: 1px solid var(--mw-line);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(23, 31, 56, 0.98) 0%, rgba(18, 24, 44, 0.98) 100%);
    box-shadow: var(--mw-shadow);
}

.app-info-table-container.table-wrapper {
    border-radius: 20px;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
}

.app-info-row {
    border-bottom: 1px solid var(--mw-line);
    transition: background 0.2s ease;
}

.app-info-row:hover {
    background: rgba(78, 106, 252, 0.06);
}

.app-info-row:first-child {
    background: rgba(252, 197, 78, 0.04);
}

.app-info-row:last-child {
    border-bottom: 0;
    background: rgba(78, 106, 252, 0.04);
}

.app-info-label-cell,
.app-info-value-cell {
    padding: 16px 18px;
    vertical-align: middle;
}

.app-info-label-cell {
    width: 56px;
    text-align: center;
}

.app-info-label-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(252, 197, 78, 0.08);
    border: 1px solid rgba(252, 197, 78, 0.2);
    color: var(--mw-gold);
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--mw-gold);
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-name-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
}

.app-name-text {
    font-family: "MwSora", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--mw-text);
}

.app-info-row:first-child .app-info-value-cell {
    font-size: 18px;
}

.app-info-row:nth-child(2) .app-info-value-cell {
    color: var(--mw-text-dim);
    line-height: 1.65;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd978 0%, var(--mw-gold) 100%);
    color: #1a1200;
    text-decoration: none;
    font-family: "MwSora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(252, 197, 78, 0.28);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.app-download-link:hover {
    color: #1a1200;
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.app-info-row:last-child .app-download-link {
    margin-top: 4px;
}

.mw-footer {
    position: relative;
    margin-top: 36px;
    padding: 0 20px 28px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(78, 106, 252, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #10162b 0%, #0a0d18 100%);
    border-top: 1px solid var(--mw-line);
    overflow: hidden;
}

.mw-footer__glow {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--mw-gold) 35%, #ffe566 50%, var(--mw-gold) 65%, transparent 100%);
    opacity: 0.75;
    margin-bottom: 28px;
}

.mw-footer__shell {
    max-width: 1440px;
    margin: 0 auto;
}

.mw-footer__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mw-line);
}

.mw-footer__brand {
    flex-shrink: 0;
}

.mw-footer__brand a {
    text-decoration: none;
}

.mw-footer__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mw-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: "MwSora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.12s ease, filter 0.15s ease, background 0.15s ease;
}

.mw-footer__cta:active {
    transform: scale(0.97);
}

.mw-footer__cta--primary {
    background: linear-gradient(135deg, #ffd978 0%, var(--mw-gold) 100%);
    color: #1a1200;
    box-shadow: 0 4px 18px rgba(252, 197, 78, 0.22);
}

.mw-footer__cta--primary:hover {
    color: #1a1200;
    filter: brightness(1.06);
}

.mw-footer__cta--secondary {
    background: rgba(78, 106, 252, 0.14);
    border: 1px solid rgba(78, 106, 252, 0.35);
    color: var(--mw-text);
}

.mw-footer__cta--secondary:hover {
    background: rgba(78, 106, 252, 0.28);
    color: #fff;
}

.mw-footer__cta--accent {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(252, 197, 78, 0.45);
    color: var(--mw-gold);
}

.mw-footer__cta--accent:hover {
    background: rgba(252, 197, 78, 0.1);
    color: #ffe566;
}

.mw-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

.mw-footer__heading {
    font-family: "MwSora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mw-footer__heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, var(--mw-gold), transparent);
    border-radius: 1px;
}

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

.mw-footer__links li {
    margin-bottom: 7px;
}

.mw-footer__links a {
    color: var(--mw-text-dim);
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.mw-footer__links a:hover,
.mw-footer__links a.is-active {
    color: var(--mw-gold);
    padding-left: 4px;
}

.mw-footer__social-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mw-footer__social-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--mw-bg-card);
    border: 1px solid var(--mw-line);
    color: var(--mw-text-dim);
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.mw-footer__social-chip:hover {
    color: var(--mw-gold);
    border-color: rgba(252, 197, 78, 0.35);
    box-shadow: 0 0 16px rgba(252, 197, 78, 0.12);
    transform: translateY(-2px);
}

.mw-footer__social-glyph {
    width: 20px;
    height: 20px;
    display: block;
}

.mw-footer__social-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
}

.mw-footer__pay {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius);
}

.mw-footer__pay-title {
    font-family: "MwSora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--mw-text);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mw-footer__pay-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mw-footer__pay-scroll::-webkit-scrollbar {
    display: none;
}

.mw-footer__pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: min-content;
}

.mw-footer__pay-chip {
    flex: 0 0 auto;
    min-width: 96px;
    padding: 12px 14px;
    background: var(--mw-bg-card);
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius-sm);
    text-align: center;
    transition: border-color 0.15s ease, transform 0.12s ease;
}

.mw-footer__pay-chip:hover {
    border-color: rgba(252, 197, 78, 0.25);
    transform: translateY(-1px);
}

.mw-footer__pay-chip img {
    max-height: 32px;
    width: auto;
    margin: 0 auto 6px;
    object-fit: contain;
}

.mw-footer__pay-label {
    display: block;
    font-size: 10px;
    color: var(--mw-text-dim);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mw-footer__bottom {
    padding-top: 22px;
    border-top: 1px solid var(--mw-line);
}

.mw-footer__safe-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.mw-footer__safe-img {
    max-width: 84px;
    height: auto;
    opacity: 0.82;
    transition: opacity 0.15s ease;
}

.mw-footer__safe-list a:hover .mw-footer__safe-img {
    opacity: 1;
}

.mw-footer__copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mw-footer__copy {
    margin: 0;
    font-size: 11px;
    color: var(--mw-text-dim);
    line-height: 1.55;
    text-align: center;
    max-width: 720px;
}

.mw-footer__top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--mw-line);
    background: var(--mw-bg-card);
    color: var(--mw-gold);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.mw-footer__top-btn:hover {
    background: rgba(252, 197, 78, 0.1);
    border-color: rgba(252, 197, 78, 0.35);
    transform: translateY(-2px);
}

.mw-error-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 280px);
    padding: 60px 24px 80px;
    overflow: hidden;
}

.mw-error-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(252, 197, 78, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 18% 72%, rgba(78, 106, 252, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.mw-error-panel::after {
    content: "?";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -62%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "MwSora", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--mw-gold);
    border: 3px dashed rgba(252, 197, 78, 0.35);
    border-radius: 50%;
    background: rgba(252, 197, 78, 0.06);
    box-shadow: 0 0 40px rgba(252, 197, 78, 0.12);
    animation: mw-error-float 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes mw-error-float {
    0%, 100% { transform: translate(-50%, -62%) rotate(0deg); }
    50% { transform: translate(-50%, -70%) rotate(4deg); }
}

.mw-error-panel__code {
    position: relative;
    z-index: 1;
    font-family: "MwSora", sans-serif;
    font-size: clamp(72px, 18vw, 120px);
    font-weight: 700;
    line-height: 1;
    margin: 100px 0 12px;
    background: linear-gradient(135deg, var(--mw-gold) 0%, #fff 42%, var(--mw-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    filter: drop-shadow(0 4px 24px rgba(252, 197, 78, 0.2));
}

.mw-error-panel__title {
    position: relative;
    z-index: 1;
    font-family: "MwSora", sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 520px;
}

.mw-error-panel__text {
    position: relative;
    z-index: 1;
    color: var(--mw-text-dim);
    margin-bottom: 32px;
    max-width: 440px;
    font-size: 15px;
    line-height: 1.65;
}

.mw-error-panel .mw-btn--gold {
    position: relative;
    z-index: 1;
    padding: 14px 32px;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(252, 197, 78, 0.28);
}

/* support page */
.mw-support-stage {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4px 40px;
}

.mw-support-stage::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(78, 106, 252, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.mw-support-stage .text-content {
    position: relative;
    max-width: none;
    margin-top: 18px;
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(23, 31, 56, 0.85) 0%, rgba(18, 24, 44, 0.95) 100%);
    border: 1px solid var(--mw-line);
    border-radius: 20px;
    box-shadow: var(--mw-shadow);
}

.mw-support-stage .text-content h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--mw-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mw-support-stage .text-content > p:first-of-type {
    font-size: 16px;
    color: var(--mw-text-dim);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mw-line);
}

.mw-support-stage .text-content h2 {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mw-gold);
    margin: 28px 0 16px;
}

.mw-support-stage .text-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--mw-text);
}

.mw-support-stage .text-content h3::before {
    content: "";
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(252, 197, 78, 0.1);
    border: 1px solid rgba(252, 197, 78, 0.25);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}

.mw-support-stage .text-content h3:nth-of-type(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fcc54e' stroke-width='1.6'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mw-support-stage .text-content h3:nth-of-type(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fcc54e' stroke-width='1.6'%3E%3Cpath d='M21 12c0 4.418-4.03 8-9 8a9.86 9.86 0 01-4-.8L3 21l1.8-4.2A7.8 7.8 0 013 12c0-4.418 4.03-8 9-8s9 3.582 9 8z' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mw-support-stage .text-content h3 + p {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--mw-line);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
    transition: border-color 0.2s ease;
}

.mw-support-stage .text-content h3 + p:hover {
    border-color: rgba(78, 106, 252, 0.35);
}

.mw-support-stage .text-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    margin-top: 4px;
    background: rgba(252, 197, 78, 0.1);
    border: 1px solid rgba(252, 197, 78, 0.3);
    border-radius: 999px;
    color: var(--mw-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mw-support-stage .text-content a:hover {
    background: rgba(252, 197, 78, 0.18);
    transform: translateY(-1px);
}

.mw-support-stage .text-content h2:last-of-type + p {
    background: linear-gradient(135deg, rgba(78, 106, 252, 0.08) 0%, rgba(252, 197, 78, 0.06) 100%);
    border: 1px solid rgba(78, 106, 252, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    color: var(--mw-text);
    line-height: 1.7;
}

/* legal pages */
.mw-legal-stage {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 4px 48px;
}

.mw-legal-stage .text-content {
    max-width: none;
    margin-top: 0;
    padding: 40px 36px;
    background: linear-gradient(180deg, rgba(23, 31, 56, 0.75) 0%, rgba(18, 24, 44, 0.95) 100%);
    border: 1px solid var(--mw-line);
    border-radius: 20px;
    box-shadow: var(--mw-shadow);
}

.mw-legal-stage .text-content h1 {
    font-size: clamp(26px, 4vw, 32px);
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--mw-gold), var(--mw-blue), transparent) 1;
}

.mw-legal-stage .text-content > p:first-of-type {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mw-text-dim);
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--mw-blue);
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
}

.mw-legal-stage .text-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--mw-text);
    margin: 32px 0 14px;
    padding-top: 8px;
}

.mw-legal-stage .text-content h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mw-gold);
    box-shadow: 0 0 10px rgba(252, 197, 78, 0.5);
    flex-shrink: 0;
}

.mw-legal-stage .text-content h3 {
    font-size: 16px;
    color: var(--mw-gold);
    margin: 20px 0 10px;
}

.mw-legal-stage .text-content p {
    line-height: 1.75;
}

.mw-legal-stage .list-container ul,
.mw-legal-stage .list-container ol {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--mw-line);
    border-radius: 12px;
    padding: 16px 16px 16px 36px;
    margin: 12px 0 20px;
}

.mw-legal-stage .list-container li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.mw-legal-stage .list-container li::marker {
    color: var(--mw-gold);
}

.mw-legal-stage .text-content a {
    color: var(--mw-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(78, 106, 252, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.mw-legal-stage .text-content a:hover {
    color: var(--mw-gold);
    border-color: rgba(252, 197, 78, 0.4);
}

.mw-legal-stage .text-content blockquote {
    border-left: 3px solid var(--mw-blue);
    background: rgba(78, 106, 252, 0.06);
}

@media (max-width: 992px) {
    .mw-navstrip {
        display: none;
    }

    .mw-dock {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 160;
        min-height: var(--mw-dock-h);
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        background: rgba(10, 13, 24, 0.96);
        border-top: 1px solid var(--mw-line);
        backdrop-filter: blur(12px);
    }

    .mw-dock__item,
    .mw-dock__toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 0;
        background: transparent;
        color: var(--mw-text-dim);
        text-decoration: none;
        font-size: 10px;
        font-weight: 600;
        cursor: pointer;
        padding: 4px;
    }

    .mw-dock__toggle {
        color: var(--mw-gold);
    }

    .mw-dock__item .mw-nav-glyph,
    .mw-dock__toggle .mw-nav-glyph {
        width: 20px;
        height: 20px;
    }

    .mw-body {
        padding-bottom: calc(var(--mw-dock-h) + 24px);
    }

    .mw-chrome__row {
        padding-inline: 14px;
    }

    .mw-btn {
        min-height: 36px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .mw-footer__hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .mw-footer__cta-row {
        width: 100%;
    }

    .mw-footer__cta {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    .mw-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mw-footer__col--social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .mw-hero-slider__frame {
        aspect-ratio: 1 / 1;
    }

    .mw-body {
        padding-inline: 14px;
    }

    .text-content {
        padding: 18px 14px;
    }
}

@media (min-width: 993px) {
    .mw-drawer,
    .mw-drawer-scrim {
        display: none !important;
    }
}
