@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

html { scroll-behavior: smooth; }
:root {
    --bg: #1f2328;
    --bg-soft: #2b3138;
    --surface: #11151a;
    --surface-card: #262b31;
    --surface-panel: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --accent: #ff5a48;
    --accent-gold: #ffc857;
    --accent-sky: #5fd1ff;
    --line: rgba(255, 255, 255, 0.1);
    --pill: rgba(255, 255, 255, 0.08);
    --nav: rgba(255, 255, 255, 0.06);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: "Outfit", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #363d45 0%, var(--bg) 42%, #171a1f 100%);
    color: var(--text);
}
.page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}
.site-header {
    position: relative;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
}
.brand-block {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.brand-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    color: #fff;
    text-decoration: none;
}
.brand-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
}
.brand-logo {
    display: block;
    width: auto;
    height: 72px;
    max-width: min(220px, 100%);
    object-fit: contain;
}
.brand-copy {
    display: none;
}
.header-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    flex: 1;
    flex-wrap: nowrap;
}
.mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
    flex: 0 0 auto;
}
.burger-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 54px;
    height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    list-style: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.burger-button::-webkit-details-marker {
    display: none;
}
.mobile-menu[open] .burger-button {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}
.burger-button span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.mobile-menu[open] .burger-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu[open] .burger-button span:nth-child(2) {
    opacity: 0;
}
.mobile-menu[open] .burger-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(300px, calc(100vw - 32px));
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(56, 62, 71, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    z-index: 220;
}
.mobile-nav {
    display: grid;
    gap: 10px;
}
.mobile-nav .nav-link {
    width: 100%;
}
.mobile-lang-form {
    align-items: stretch;
}
.site-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    width: 100%;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: var(--nav);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.nav-link.is-active {
    background: linear-gradient(135deg, rgba(255, 90, 72, 0.22), rgba(255, 90, 72, 0.14));
    border-color: rgba(255, 90, 72, 0.35);
    box-shadow: 0 14px 26px rgba(255, 90, 72, 0.16);
}
.lang-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.lang-label {
    display: none;
}
.lang-select {
    min-width: 76px;
    width: 76px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.lang-select:focus {
    outline: none;
    border-color: rgba(255, 90, 72, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 90, 72, 0.12);
}
.lang-select option { color: #11151a; }
.lang-form--floating {
    position: fixed;
    bottom: 22px;
    left: max(16px, calc((100vw - 1180px) / 2 + 16px));
    z-index: 90;
    padding: 6px;
    border-radius: 18px;
    background: rgba(43, 49, 56, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}
.header-tools-desktop {
    padding-right: 0;
}
.lang-form--floating .lang-select {
    background: transparent;
    border: none;
    box-shadow: none;
}
.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(380px, 48vw, 520px);
    margin-bottom: 36px;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 116, 71, 0.22), transparent 18%),
        radial-gradient(circle at 84% 20%, rgba(95, 209, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 78%, rgba(255, 200, 87, 0.12), transparent 26%),
        linear-gradient(180deg, #060b17 0%, #09122a 48%, #160a24 100%);
    border: 1px solid rgba(120, 179, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    isolation: isolate;
}
.hero-banner::before,
.hero-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}
.hero-banner::before {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -30px;
    background: radial-gradient(circle, rgba(95, 209, 255, 0.3) 0%, rgba(95, 209, 255, 0.04) 58%, transparent 72%);
    animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-banner::after {
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -20px;
    background: radial-gradient(circle, rgba(255, 90, 72, 0.22) 0%, rgba(255, 200, 87, 0.08) 56%, transparent 72%);
    animation: orbFloat 10s ease-in-out 0.8s infinite alternate-reverse;
}
.hero-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 28%),
        linear-gradient(120deg, rgba(8, 14, 34, 0.12) 0%, rgba(8, 14, 34, 0) 42%, rgba(255, 90, 72, 0.08) 100%),
        repeating-linear-gradient(90deg, rgba(95, 209, 255, 0.07) 0 1px, transparent 1px 78px),
        repeating-linear-gradient(0deg, rgba(95, 209, 255, 0.05) 0 1px, transparent 1px 78px);
}
.hero-banner__overlay::before,
.hero-banner__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
}
.hero-banner__overlay::before {
    left: -8%;
    right: -8%;
    top: auto;
    bottom: -16%;
    height: 58%;
    background:
        linear-gradient(180deg, rgba(95, 209, 255, 0.22), rgba(95, 209, 255, 0) 24%),
        repeating-linear-gradient(90deg, rgba(95, 209, 255, 0.14) 0 2px, transparent 2px 54px),
        repeating-linear-gradient(0deg, rgba(95, 209, 255, 0.12) 0 2px, transparent 2px 54px);
    transform: perspective(420px) rotateX(76deg);
    transform-origin: bottom;
    opacity: 0.38;
}
.hero-banner__overlay::after {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 38%),
        linear-gradient(180deg, rgba(7, 12, 30, 0) 0%, rgba(7, 12, 30, 0.22) 100%);
}
.hero-banner__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-banner__panel,
.hero-banner__coin,
.hero-banner__pixel {
    position: absolute;
}
.hero-banner__panel {
    width: clamp(116px, 15vw, 176px);
    aspect-ratio: 0.82;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(16, 22, 49, 0.9), rgba(10, 14, 31, 0.62));
    border: 1px solid rgba(95, 209, 255, 0.24);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 32px rgba(95, 209, 255, 0.12);
    backdrop-filter: blur(6px);
}
.hero-banner__panel::before,
.hero-banner__panel::after {
    content: "";
    position: absolute;
}
.hero-banner__panel::before {
    inset: 14px 14px 52px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(95, 209, 255, 0.3), rgba(95, 209, 255, 0.02)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 8px),
        linear-gradient(135deg, rgba(61, 82, 255, 0.36), rgba(255, 90, 72, 0.16));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.hero-banner__panel::after {
    left: 50%;
    bottom: 18px;
    width: 78px;
    height: 24px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 10px 12px, #ff6f4f 0 4px, transparent 5px),
        radial-gradient(circle at 28px 12px, #ffc857 0 4px, transparent 5px),
        radial-gradient(circle at 46px 12px, #5fd1ff 0 4px, transparent 5px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 18px, transparent 18px 24px, rgba(255, 255, 255, 0.2) 24px 42px, transparent 42px);
    opacity: 0.95;
}
.hero-banner__panel--left {
    top: 14%;
    left: 5%;
    transform: rotate(-13deg);
    animation: panelFloatLeft 10s ease-in-out infinite;
}
.hero-banner__panel--right {
    right: 6%;
    bottom: 12%;
    transform: rotate(13deg);
    border-color: rgba(255, 200, 87, 0.24);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 32px rgba(255, 200, 87, 0.14);
    animation: panelFloatRight 11s ease-in-out infinite;
}
.hero-banner__coin {
    width: clamp(42px, 4vw, 56px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff4bf 0%, #ffd86d 48%, #ff9f3f 100%);
    border: 1px solid rgba(255, 246, 198, 0.6);
    box-shadow:
        0 14px 26px rgba(255, 168, 60, 0.24),
        inset 0 0 0 3px rgba(255, 255, 255, 0.18);
    animation: coinSpin 6s linear infinite;
}
.hero-banner__coin::before {
    content: "+";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(120, 72, 0, 0.78);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
}
.hero-banner__coin--one {
    top: 16%;
    left: 24%;
}
.hero-banner__coin--two {
    right: 22%;
    bottom: 18%;
    animation-delay: 1.6s;
}
.hero-banner__pixel {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #5fd1ff;
    box-shadow:
        18px 8px 0 rgba(255, 200, 87, 0.88),
        36px -6px 0 rgba(255, 90, 72, 0.88),
        58px 10px 0 rgba(95, 209, 255, 0.65);
    animation: pixelBlink 3.8s steps(2, end) infinite;
}
.hero-banner__pixel--one {
    top: 24%;
    right: 28%;
}
.hero-banner__pixel--two {
    bottom: 26%;
    left: 20%;
    animation-delay: 0.8s;
}
.hero-banner__pixel--three {
    top: 62%;
    right: 14%;
    animation-delay: 1.4s;
}
.hero-banner__content {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    display: grid;
    justify-items: center;
    text-align: center;
}
.hero-banner__stack {
    position: relative;
    width: 100%;
    min-height: clamp(240px, 28vw, 320px);
}
.hero-banner__line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 12px 10px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    animation: bannerLoop 8s cubic-bezier(0.2, 0.65, 0.2, 1) infinite;
}
.hero-banner__line--one {
    color: #ffffff;
    font-size: clamp(29px, 4.2vw, 52px);
    line-height: 1.1;
    animation-delay: 0s;
}
.hero-banner__line--two {
    color: #ffe7ad;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    animation-delay: 4s;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: var(--bg-soft);
}
.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.card-body .cta {
    margin-top: auto;
}
.card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.card p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pill {
    background: var(--pill);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 13px;
}
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-family: "Sora", "Segoe UI", sans-serif;
    box-shadow: 0 18px 30px rgba(255, 90, 72, 0.28);
}
.empty,
.info-panel,
.contact-card,
.step-card,
.about-card {
    background: var(--surface-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.empty {
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
}
.steps,
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.testimonials-section {
    overflow: hidden;
}
.testimonials-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.testimonials-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: testimonials-scroll 38s linear infinite;
}
.testimonials-group {
    display: flex;
    gap: 22px;
    flex-shrink: 0;
}
.testimonial-card {
    width: min(360px, 78vw);
    min-height: 220px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 200, 87, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        var(--surface-panel);
}
.testimonial-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.testimonial-stars {
    color: #ffc857;
    font-size: 18px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.testimonial-card p {
    font-size: 17px;
    line-height: 1.9;
}
@keyframes testimonials-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 11px));
    }
}
.step-card h2,
.about-card h2,
.contact-card h2 { margin: 0 0 10px; font-size: 24px; }
.step-card p,
.about-card p,
.contact-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.section-title {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
}
.section-intro {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 880px;
}
.section-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.section-link {
    min-width: 220px;
}
.page-section--games-home .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page--games .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1400px) {
    .page--games .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 1100px) {
    .page-section--games-home .grid,
    .page--games .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    margin-top: 24px;
}
.page-section {
    margin-top: 56px;
    scroll-margin-top: 120px;
}
.page-section-hero {
    margin-top: 0;
}
.contact-note {
    margin-top: 14px !important;
}
.step-card h3,
.about-card h3,
.contact-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.scroll-top-button {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6d4f, #ff5a48);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(255, 90, 72, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 60;
}
.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #149647);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 20px 34px rgba(20, 150, 71, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    z-index: 61;
}
.whatsapp-button__icon {
    width: 34px;
    height: 34px;
    display: block;
}
.whatsapp-button:hover {
    transform: translateY(-2px);
}
.whatsapp-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18), 0 20px 34px rgba(20, 150, 71, 0.28);
}
.scroll-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-button:hover {
    transform: translateY(-2px);
}
.scroll-top-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 90, 72, 0.18), 0 18px 30px rgba(255, 90, 72, 0.28);
}
@media (max-width: 720px) {
    .site-header {
        position: relative;
        z-index: 140;
        overflow: visible;
        display: block;
        width: calc(100% + 32px);
        gap: 0;
        margin: -28px -16px 22px;
        padding: 16px 16px 12px;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
    }
    .brand-head {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 48px;
        align-items: center;
        column-gap: 12px;
        width: 100%;
        min-height: 58px;
    }
    .brand-block { display: block; width: 100%; }
    .brand-link {
        gap: 10px;
        max-width: 100%;
        min-width: 0;
        padding-right: 0;
        flex: 0 1 auto;
    }
    .brand-title {
        font-size: 30px;
        white-space: normal;
        color: #252a32;
    }
    .brand-logo {
        height: 54px;
        max-width: min(220px, 100%);
    }
    .header-tools-desktop { display: block; padding-right: 0; width: 0; height: 0; }
    .header-tools-desktop .site-nav { display: none; }
    .mobile-menu {
        display: block;
        position: static;
        width: 48px;
        margin-left: 0;
        justify-self: end;
        flex: 0 0 auto;
        transform: none;
    }
    .burger-button {
        position: static;
        transform: none;
        margin-left: 0;
        width: 48px;
        height: 48px;
        padding: 0 8px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 7px;
    }
    .burger-button span {
        height: 3px;
        background: #de5b95;
    }
    .mobile-menu[open] .burger-button {
        background: transparent;
        border-color: transparent;
    }
    .site-header:has(.mobile-menu[open]) {
        margin-bottom: 318px;
    }
    .mobile-menu-panel {
        top: calc(100% + 12px);
        right: -16px;
        left: -16px;
        width: auto;
        padding: 0;
        gap: 0;
        border-radius: 0;
        background: #ffffff;
        border: 1px solid #ece7e2;
        border-left: none;
        border-right: none;
        box-shadow: 0 16px 30px rgba(20, 24, 31, 0.08);
    }
    .mobile-nav {
        gap: 0;
    }
    .mobile-nav .nav-link {
        min-height: 64px;
        width: 100%;
        border-radius: 0;
        border: 0;
        border-top: 1px solid #ece7e2;
        background: #ffffff;
        color: #10131a;
        box-shadow: none;
        font-size: 17px;
        font-weight: 500;
    }
    .mobile-nav .nav-link:first-child {
        border-top: none;
    }
    .mobile-nav .nav-link.is-active {
        background: #ffffff;
        color: #de5b95;
        border-color: #ece7e2;
        box-shadow: none;
    }
    .lang-form--floating {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: auto;
        top: auto;
        padding: 6px;
        background: rgba(43, 49, 56, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(12px);
    }
    .lang-select { min-width: 84px; width: 84px; }
    .mobile-lang-form { display: none; }
    .hero-banner {
        min-height: 470px;
        padding: 20px;
        border-radius: 28px;
    }
    .hero-banner__panel {
        display: none;
    }
    .hero-banner__coin--one {
        left: 12%;
    }
    .hero-banner__coin--two {
        right: 10%;
        bottom: 14%;
    }
    .hero-banner__pixel--one {
        right: 18%;
    }
    .hero-banner__pixel--three {
        right: 6%;
    }
    .hero-banner__stack {
        min-height: 240px;
    }
    .hero-banner__line {
        width: 100%;
        padding: 12px 10px;
    }
    .hero-banner__line--one {
        font-size: clamp(22px, 8vw, 34px);
    }
    .hero-banner__line--two {
        font-size: clamp(18px, 5vw, 24px);
    }
    .page-section--games-home .grid,
    .page--games .grid {
        grid-template-columns: 1fr;
    }
    .section-link {
        width: 100%;
        min-width: 0;
    }
    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-button__icon {
        width: 31px;
        height: 31px;
    }
    .scroll-top-button { right: 18px; bottom: 80px; width: 52px; height: 52px; }
}
@keyframes bannerLoop {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.96);
    }
    8% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    42% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0;
        transform: translateY(-20px) scale(1.02);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.02);
    }
}
@keyframes orbFloat {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-10px) translateX(10px);
    }
}
@keyframes panelFloatLeft {
    0%, 100% {
        transform: translateY(0) rotate(-13deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}
@keyframes panelFloatRight {
    0%, 100% {
        transform: translateY(0) rotate(13deg);
    }
    50% {
        transform: translateY(12px) rotate(10deg);
    }
}
@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes pixelBlink {
    0%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.promo-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(22px, 4vw, 40px);
    align-items: center;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(255, 200, 87, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(10, 16, 36, 0.95), rgba(14, 11, 29, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}
.promo-split__copy {
    display: grid;
    gap: 18px;
}
.promo-split__eyebrow {
    margin: 0;
    color: #ffc857;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.promo-split__title {
    margin: 0;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.04;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
}
.promo-split__text {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    max-width: 62ch;
}
.promo-split__cta {
    width: fit-content;
    min-width: 220px;
    margin-top: 6px;
}
.promo-split__media {
    position: relative;
    min-height: 100%;
}
.promo-split__media::before {
    content: "";
    position: absolute;
    inset: 16px -14px -16px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(95, 209, 255, 0.2), rgba(255, 90, 72, 0.16));
    filter: blur(18px);
    opacity: 0.8;
}
.promo-split__image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

@media (max-width: 720px) {
    .promo-split {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .promo-split__text {
        font-size: 16px;
    }
    .promo-split__cta {
        width: 100%;
        min-width: 0;
    }
    .promo-split__image {
        min-height: 280px;
    }
}

.how-guide {
    margin: 0 0 24px;
    color: #ffc857;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.steps--how {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.step-card__copy {
    display: grid;
    gap: 14px;
}
.step-card__copy p {
    margin: 0;
}

@media (max-width: 900px) {
    .steps--how {
        grid-template-columns: 1fr;
    }
}

.steps--how {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.steps--how .step-card:last-child {
    grid-column: 2 !important;
}

@media (max-width: 900px) {
    .steps--how {
        grid-template-columns: 1fr !important;
    }
    .steps--how .step-card:last-child {
        grid-column: auto !important;
    }
}

.steps--how {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.steps--how .step-card:last-child {
    grid-column: auto !important;
}

@media (max-width: 900px) {
    .steps--how {
        grid-template-columns: 1fr !important;
    }
    .steps--how .step-card:last-child {
        grid-column: auto !important;
    }
}

#how .section-title {
    background: linear-gradient(90deg, #ffffff 0%, #ffd36b 38%, #7ad8ff 72%, #ff8b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#how .section-intro {
    color: rgba(255, 255, 255, 0.82);
}

#how .step-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(14, 18, 34, 0.96), rgba(32, 34, 43, 0.92));
    border-color: rgba(255, 255, 255, 0.1);
}

#how .step-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 24px;
}

#how .step-card::after {
    content: "";
    position: absolute;
    inset: -40% auto auto -10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.16;
    pointer-events: none;
}

#how .step-card:nth-child(1) {
    box-shadow: 0 24px 50px rgba(255, 196, 87, 0.08);
}

#how .step-card:nth-child(1)::before {
    background: linear-gradient(180deg, #ffc857, #ff8b6b);
}

#how .step-card:nth-child(1)::after {
    background: rgba(255, 200, 87, 0.72);
}

#how .step-card:nth-child(2) {
    box-shadow: 0 24px 50px rgba(95, 209, 255, 0.08);
}

#how .step-card:nth-child(2)::before {
    background: linear-gradient(180deg, #5fd1ff, #6f8cff);
}

#how .step-card:nth-child(2)::after {
    background: rgba(95, 209, 255, 0.72);
}

#how .step-card:nth-child(3) {
    box-shadow: 0 24px 50px rgba(255, 111, 79, 0.08);
}

#how .step-card:nth-child(3)::before {
    background: linear-gradient(180deg, #ff6f4f, #ffc857);
}

#how .step-card:nth-child(3)::after {
    background: rgba(255, 111, 79, 0.72);
}

#how .step-card h3,
#how .step-card p {
    position: relative;
    z-index: 1;
}

.card .meta {
    display: none !important;
}

.contact-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(13, 17, 31, 0.96), rgba(24, 26, 36, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}
.contact-split__copy {
    display: grid;
    gap: 18px;
}
.contact-split__kicker {
    margin: 0;
    color: #ffc857;
    font-size: 22px;
    font-weight: 800;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.contact-split__text,
.contact-split__block p,
.contact-split__meta p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}
.contact-split__block {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}
.contact-split__block h3 {
    margin: 0;
    font-size: 28px;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.contact-split__meta {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}
.contact-split__meta a {
    color: #ffd36b;
    text-decoration: none;
}
.contact-split__meta a:hover {
    text-decoration: underline;
}
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}
.contact-form {
    display: grid;
    gap: 16px;
}
.contact-form h3 {
    margin: 0 0 4px;
    font-size: 30px;
    font-family: "Sora", "Segoe UI", sans-serif;
}
.contact-form__field {
    display: grid;
    gap: 8px;
}
.contact-form__field span {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
}
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font: inherit;
    resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: rgba(255, 200, 87, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.12);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}
.contact-form__submit {
    width: 100%;
    min-width: 0;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .contact-split__text,
    .contact-split__block p,
    .contact-split__meta p {
        font-size: 16px;
    }
    .contact-form h3 {
        font-size: 26px;
    }
}

.form-alert {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}
.form-alert p {
    margin: 0;
}
.form-alert--success {
    background: rgba(44, 182, 125, 0.12);
    border: 1px solid rgba(44, 182, 125, 0.28);
    color: #b9f5d8;
}
.form-alert--error {
    background: rgba(255, 111, 79, 0.12);
    border: 1px solid rgba(255, 111, 79, 0.28);
    color: #ffd3c8;
}

.site-footer {
    margin-top: 56px;
    padding: 26px 20px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}