@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    size-adjust: 100%;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
    size-adjust: 100%;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
    size-adjust: 100%;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    size-adjust: 100%;
}


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

:root {
    --bg: #16130b;
    --bg-deep: #110e07;
    --surface-low: #1f1b13;
    --surface: #231f17;
    --surface-high: #2d2a21;
    --surface-highest: #38342b;
    --primary: #f2ca50;
    --primary-dim: #e9c349;
    --primary-dark: #d4af37;
    --on-primary: #3c2f00;
    --on-primary-container: #554300;
    --text: #eae1d4;
    --text-secondary: #d0c5af;
    --text-muted: #99907c;
    --outline: #4d4635;
    --gold-glow: 0 2px 20px rgba(212, 175, 55, 0.18);
    --gold-lift: 0 4px 20px rgba(212, 175, 55, 0.2);
    --inner-stroke: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 48px;
    --max-width: 1320px;
    --nav-height: 72px;
    --bar-height: 52px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-high);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.compliance-bar {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 55;
    background: var(--surface-low);
    border-bottom: 1px solid var(--outline);
    padding: 10px 20px;
    text-align: center;
    min-height: var(--bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-bar p {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 900px;
    line-height: 1.5;
}

.compliance-bar a {
    color: var(--primary);
}

.compliance-bar a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .compliance-bar {
        position: relative;
        min-height: auto;
        padding: 10px 16px;
    }

    .compliance-bar p {
        font-size: 10px;
    }
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(22, 19, 11, 0.6);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(22, 19, 11, 0.95);
    border-color: var(--outline);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}

.nav-cta {
    background: var(--primary);
    color: var(--on-primary-container);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: var(--radius);
    transition: opacity 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    opacity: 0.88;
}

.nav-cta:active {
    transform: scale(0.97);
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    background: transparent;
    border-radius: var(--radius-sm);
    border: 1px solid var(--outline);
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--nav-height) + var(--bar-height));
    left: 0;
    right: 0;
    background: rgba(22, 19, 11, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--outline);
    z-index: 54;
    padding: var(--space-md) var(--space-md) var(--space-lg);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
    background: var(--surface-low);
    color: var(--primary);
}

.mobile-menu .mobile-cta {
    display: block;
    margin-top: 8px;
    text-align: center;
    background: var(--primary);
    color: var(--on-primary-container);
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
    }
}

.page-wrapper {
    padding-top: calc(var(--nav-height) + var(--bar-height));
}

@media (max-width: 900px) {
    .page-wrapper {
        padding-top: var(--nav-height);
    }
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-bg-blob.top-right {
    top: -160px;
    right: -160px;
    width: 400px;
    height: 400px;
    background: rgba(242, 202, 80, 0.1);
}

.hero-bg-blob.bottom-left {
    bottom: -160px;
    left: -160px;
    width: 400px;
    height: 400px;
    background: rgba(179, 196, 255, 0.08);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-xl);
    color: var(--text);
}

.hero-headline em {
    font-style: italic;
    color: var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 400px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--on-primary-container);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--gold-glow);
    transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: var(--gold-lift);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(242, 202, 80, 0.08);
    box-shadow: var(--gold-glow);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.hero-visual img {
    width: 100%;
    max-width: 440px;
    filter: drop-shadow(0 0 40px rgba(242, 202, 80, 0.3));
    transition: transform 0.7s ease;
}

.hero-visual img:hover {
    transform: scale(1.04);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

.badge-pill {
    padding: 6px 14px;
    border: 1px solid var(--outline);
    background: var(--surface-low);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    opacity: 0.55;
    transition: opacity 0.4s ease, filter 0.4s ease;
    filter: grayscale(1);
}

.hero-trust:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.trust-item .icon {
    font-size: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.bento-card {
    background: var(--surface-low);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--inner-stroke);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--inner-stroke), var(--gold-glow);
}

.bento-icon {
    font-size: 36px;
    color: var(--primary);
}

.bento-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

.bento-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.6;
}

.games-section {
    padding: var(--space-xl) 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.game-card {
    background: var(--surface-low);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--inner-stroke);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    box-shadow: var(--inner-stroke), var(--gold-lift);
    transform: translateY(-2px);
}

.game-thumb {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--surface-high);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.game-card:hover .game-thumb img {
    opacity: 1;
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(22, 19, 11, 0.85);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
}

.game-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.game-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
}

.game-views {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
}

.game-launch {
    width: 100%;
    padding: 10px;
    background: var(--surface-highest);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    border: none;
    transition: background 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.game-card:hover .game-launch {
    background: var(--primary);
    color: var(--on-primary-container);
}

.about-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--outline);
    border-bottom: 1px solid var(--outline);
}

.about-inner {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: 8px;
}

.stat-box {
    flex: 1;
    background: var(--surface);
    border: 1px solid rgba(77, 70, 53, 0.4);
    border-radius: var(--radius);
    padding: var(--space-md);
}

.stat-num {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

.about-right {
    flex: 1;
    background: var(--surface-low);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--inner-stroke);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-right .company-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.company-address {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: var(--space-sm);
}

.company-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.company-link:hover {
    color: var(--primary);
}

.company-link .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.how-section {
    padding: var(--space-xl) 0;
    text-align: center;
}

.how-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.how-section .sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.how-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(242, 202, 80, 0.1);
    border: 1px solid rgba(242, 202, 80, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.how-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.how-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-section {
    padding: var(--space-xl) 0;
    max-width: 820px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--surface);
    border: 1px solid rgba(77, 70, 53, 0.35);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item[open] {
    background: var(--surface-high);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-section {
    padding: var(--space-xl);
    background: var(--surface-low);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--inner-stroke);
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-left p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-details {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-company {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.contact-reg {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon-wrap {
    background: rgba(242, 202, 80, 0.1);
    border-radius: var(--radius);
    padding: 8px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon-wrap .icon {
    font-size: 20px;
    display: block;
}

.contact-row-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-row-value {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.2s;
}

a.contact-row-value:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: var(--surface-highest);
    border: 1px solid var(--outline);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    padding: 0 16px;
    height: 56px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 202, 80, 0.12);
}

.form-textarea {
    height: auto;
    padding: 14px 16px;
    resize: none;
    line-height: 1.6;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-check label a {
    color: var(--primary);
}

.form-check label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    height: 56px;
    background: var(--primary);
    color: var(--on-primary-container);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow: var(--gold-glow);
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
}

.form-submit:hover {
    opacity: 0.9;
    box-shadow: var(--gold-lift);
}

.form-submit:active {
    transform: scale(0.98);
}

.disclaimer-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(77, 70, 53, 0.4);
    margin-top: var(--space-xl);
}

.disclaimer-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.disclaimer-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

.disclaimer-badge-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.disclaimer-text {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
}

.mandatory-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(77, 70, 53, 0.3);
    width: 100%;
    margin-top: 8px;
}

.mandatory-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface-high);
    border: 1px solid rgba(77, 70, 53, 0.35);
    border-radius: var(--radius);
    font-size: 13px;
}

.mandatory-badge .icon {
    color: var(--primary);
    font-size: 18px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--space-md);
    background: var(--surface-low);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(242, 202, 80, 0.2);
}

.support-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-card-head .icon {
    color: var(--primary);
    font-size: 20px;
}

.support-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.support-phone {
    font-size: 13px;
    color: var(--text-secondary);
}

.support-link {
    font-size: 13px;
    color: var(--primary);
    transition: text-decoration 0.2s;
}

.support-link:hover {
    text-decoration: underline;
}

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--outline);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

.footer-logo-row {
    margin-bottom: var(--space-lg);
}

.footer-logo-row img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    border-bottom: 1px solid var(--outline);
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col nav a,
.footer-col .footer-text {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-col nav a:hover {
    color: var(--primary);
}

.footer-col .footer-sub {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
}

.footer-copy {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-18 {
    height: 32px;
    width: auto;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.footer-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-secondary);
    padding: 4px 8px;
    background: var(--surface);
    border-radius: var(--radius-sm);
}

.footer-tag.gold {
    background: rgba(242, 202, 80, 0.1);
    color: var(--primary);
    border: 1px solid rgba(242, 202, 80, 0.2);
}

.game-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(17, 14, 7, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.game-modal-overlay.active {
    display: flex;
}

.game-modal {
    background: var(--surface-low);
    border-radius: var(--radius-xl);
    box-shadow: var(--inner-stroke), 0 20px 60px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--outline);
    flex-shrink: 0;
}

.game-modal-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.game-modal-close {
    background: var(--surface-high);
    border: none;
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.game-modal-close:hover {
    background: rgba(242, 202, 80, 0.15);
    color: var(--primary);
}

.game-modal-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.game-modal-body iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
}

.game-modal-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--outline);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
    flex-shrink: 0;
}

.page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
    border-bottom: 1px solid var(--outline);
    margin-bottom: var(--space-xl);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 10px;
}

.page-hero .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.page-hero .updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.prose {
    max-width: 860px;
}

.prose h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    margin: 36px 0 14px;
    padding-top: 8px;
}

.prose h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 10px;
}

.prose p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.prose ul,
.prose ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.prose li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.prose a {
    color: var(--primary);
}

.prose a:hover {
    text-decoration: underline;
}

.prose .info-box {
    background: var(--surface-low);
    border: 1px solid var(--outline);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 20px 0;
}

.prose .info-box p {
    margin: 0;
    font-size: 14px;
}

.notice-banner {
    background: rgba(242, 202, 80, 0.08);
    border: 1px solid rgba(242, 202, 80, 0.25);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.notice-banner strong {
    color: var(--primary);
}

@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-badges {
        display: none;
    }

    .hero-visual {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
        letter-spacing: -0.01em;
    }

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

    .hero-left {
        align-items: center;
        text-align: center;
        order: 2;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
    }

    .hero-visual img {
        max-width: 260px;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

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

    .about-inner {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }

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

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

    .footer-inner {
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-inner {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-headline {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .prose h2 {
        font-size: 22px;
    }

    .mandatory-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 360px) {
    :root {
        --space-lg: 16px;
        --space-xl: 32px;
    }

    .hero-headline {
        font-size: 24px;
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.5s ease both;
}

.fade-up-delay-1 {
    animation-delay: 0.1s;
}

.fade-up-delay-2 {
    animation-delay: 0.2s;
}

.fade-up-delay-3 {
    animation-delay: 0.3s;
}

.lazy-img {
    transition: opacity 0.4s ease;
}

.lazy-img.loaded {
    opacity: 1;
}

.icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}