:root {
    --color-obsidian: #0A0A12;
    --color-cyan: #00daf3;
    --color-cyan-light: #c3f5ff;
    --color-cyan-dark: #006875;
    --color-magenta: #ff4b89;
    --color-magenta-dark: #590026;
    --color-text-main: #F3F4F6;
    --color-text-muted: #8B949E;
    --font-display: 'IRANYekanX', 'Space Grotesk', sans-serif;
    --font-body: 'IRANYekanX', Outfit, sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover-bg: rgba(255, 255, 255, 0.06);
}


/* Reusable section headings */
.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .section-heading { margin-bottom: 3rem; }
}
.section-heading--lg { margin-bottom: 3rem; }
@media (min-width: 768px) {
    .section-heading--lg { margin-bottom: 4rem; }
}
.section-heading__eyebrow {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.section-heading__title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-heading__desc {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 42rem;
    margin-inline: auto;
    line-height: 1.625;
    font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0A0A12; }
::-webkit-scrollbar-thumb { background: #006875; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00daf3; }

/* Custom cursor — desktop / fine pointer only */
@media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
}

body {
    background-color: #0A0A12;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Custom Gaming Cursor */
.cursor-dot,
.cursor-ring {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        display: block;
        width: 8px; height: 8px; background: #00daf3;
        border-radius: 50%; position: fixed; z-index: 10001;
        pointer-events: none; transform: translate(-50%, -50%);
        box-shadow: 0 0 10px #00daf3;
    }
    .cursor-ring {
        display: block;
        width: 30px; height: 30px; border: 2px solid rgba(255, 75, 137, 0.5);
        border-radius: 50%; position: fixed; z-index: 10001;
        pointer-events: none; transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s;
    }
}

/* Obsidian Glass Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-panel:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 218, 243, 0.4);
    box-shadow: 0 0 30px rgba(0, 218, 243, 0.1);
}

/* Buttons */
.btn-primary {
    background: rgba(0, 218, 243, 0.1);
    color: #00daf3; border: 1px solid #00daf3;
    box-shadow: 0 0 15px rgba(0, 218, 243, 0.2);
    position: relative; overflow: hidden; transition: 0.3s;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 218, 243, 0.4), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    background: #00daf3; color: #0A0A12;
    box-shadow: 0 0 40px rgba(0, 218, 243, 0.6);
    transform: scale(1.05) skewX(-5deg);
}

.text-glow-cyan { text-shadow: 0 0 20px rgba(0, 218, 243, 0.6); }
.text-glow-magenta { text-shadow: 0 0 20px rgba(255, 75, 137, 0.6); }

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0A0A12;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}
.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.loader-logo-frame {
    width: 128px;
    height: 128px;
    animation: loader-logo-pulse 1.5s ease-in-out infinite;
}
@keyframes loader-logo-pulse {
    0%, 100% { opacity: 0.75; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
}
.loader-text {
    font-family: 'Space Grotesk', Vazirmatn, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #00daf3;
    text-shadow: 0 0 15px rgba(0, 218, 243, 0.5);
    animation: loader-pulse 1.5s ease-in-out infinite;
    direction: ltr;
    unicode-bidi: isolate;
}
@keyframes loader-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.site-logo-frame {
    width: 2.75rem;
    height: 2.75rem;
}

body.loading { overflow: hidden; }

/* Hero Section */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../hero-bg.png') center center / cover no-repeat;
    z-index: -2;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 18, 0.72) 0%, rgba(10, 10, 18, 0.55) 45%, rgba(10, 10, 18, 0.88) 100%),
        radial-gradient(ellipse at 50% 40%, rgba(0, 218, 243, 0.08) 0%, transparent 55%);
    z-index: -1;
}
.hero-section > * {
    position: relative;
    z-index: 1;
}

/* Features Section — horizontal track */
.features-section {
    position: relative;
}
.features-track-outer {
    position: relative;
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
}
.features-track-outer::before,
.features-track-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
}
.features-track-outer::before {
    right: 0;
    background: linear-gradient(270deg, #0A0A12 0%, transparent 100%);
}
.features-track-outer::after {
    left: 0;
    background: linear-gradient(90deg, #0A0A12 0%, transparent 100%);
}
.features-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(139, 148, 158, 0.85);
}
.features-scroll-hint span {
    color: #00daf3;
    animation: feature-hint-pulse 2s ease-in-out infinite;
}
@keyframes feature-hint-pulse {
    0%, 100% { opacity: 0.45; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-4px); }
}
@media (min-width: 1024px) {
    .features-scroll-hint { display: none; }
}
.features-track {
    --feature-card-peek: 2rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.875rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 218, 243, 0.35) rgba(255, 255, 255, 0.05);
}
.features-track::-webkit-scrollbar {
    height: 6px;
}
.features-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}
.features-track::-webkit-scrollbar-thumb {
    background: rgba(0, 218, 243, 0.35);
    border-radius: 3px;
}
@media (min-width: 1024px) {
    .features-track-outer {
        margin-inline: 0;
        padding-inline: 0;
    }
    .features-track {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1rem;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    .features-track-outer::before,
    .features-track-outer::after {
        display: none;
    }
}
.feature-slide {
    flex: 0 0 min(78vw, 17.5rem);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.15rem 1.15rem 1.25rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .feature-slide {
        flex-basis: min(42vw, 18rem);
    }
}
@media (min-width: 1024px) {
    .feature-slide {
        grid-column: span 3;
        min-width: 0;
        max-width: none;
        scroll-snap-align: unset;
    }
    .feature-slide:nth-child(4n + 1):nth-last-child(3),
    .feature-slide:nth-child(4n + 1):nth-last-child(3) ~ .feature-slide {
        grid-column: span 4;
    }
    .feature-slide:nth-child(4n + 1):nth-last-child(2),
    .feature-slide:nth-child(4n + 1):nth-last-child(2) ~ .feature-slide {
        grid-column: span 6;
    }
    .feature-slide:nth-child(4n + 1):nth-last-child(1) {
        grid-column: span 12;
    }
}
.feature-slide:hover {
    border-color: rgba(0, 218, 243, 0.35);
    box-shadow: 0 8px 32px rgba(0, 218, 243, 0.1);
    transform: translateY(-3px);
}
.feature-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}
.feature-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 218, 243, 0.65) 0%, rgba(0, 218, 243, 0.08) 55%, transparent 100%);
    opacity: 0.7;
}
.feature-slide > * {
    position: relative;
    z-index: 2;
}
.feature-slide__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}
.feature-slide__index {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(0, 218, 243, 0.75);
    padding: 0.2rem 0.45rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 218, 243, 0.22);
    background: rgba(0, 218, 243, 0.06);
}
.feature-slide__icon {
    font-size: 1.35rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(0, 218, 243, 0.25));
}
.feature-slide--bg-1::before {
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 218, 243, 0.2) 0%, rgba(0, 218, 243, 0) 42%),
        linear-gradient(160deg, rgba(0, 218, 243, 0.06) 0%, rgba(255, 255, 255, 0.01) 70%);
}
.feature-slide--bg-2::before {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 75, 137, 0.16) 0%, rgba(255, 75, 137, 0) 40%),
        linear-gradient(165deg, rgba(0, 218, 243, 0.07) 0%, rgba(255, 75, 137, 0.04) 100%);
}
.feature-slide--bg-3::before {
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 75, 137, 0.18) 0%, rgba(255, 75, 137, 0) 44%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 218, 243, 0.04) 100%);
}
.feature-slide--bg-4::before {
    background:
        radial-gradient(circle at 78% 14%, rgba(255, 75, 137, 0.16) 0%, rgba(255, 75, 137, 0) 42%),
        linear-gradient(145deg, rgba(255, 75, 137, 0.06) 0%, rgba(255, 255, 255, 0.015) 62%);
}
.feature-slide--bg-5::before {
    background:
        radial-gradient(circle at 15% 8%, rgba(0, 218, 243, 0.18) 0%, rgba(0, 218, 243, 0) 44%),
        linear-gradient(130deg, rgba(0, 218, 243, 0.06) 0%, rgba(5, 10, 20, 0.04) 100%);
}
.feature-slide--bg-6::before {
    background:
        radial-gradient(circle at 86% 10%, rgba(255, 75, 137, 0.14) 0%, rgba(255, 75, 137, 0) 40%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 218, 243, 0.04) 100%);
}
.feature-slide--bg-7::before {
    background:
        radial-gradient(circle at 20% 12%, rgba(0, 218, 243, 0.16) 0%, rgba(0, 218, 243, 0) 42%),
        linear-gradient(150deg, rgba(255, 75, 137, 0.05) 0%, rgba(255, 255, 255, 0.02) 58%);
}
.feature-slide--highlight {
    background: linear-gradient(160deg, rgba(0, 218, 243, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%);
    border-color: rgba(0, 218, 243, 0.22);
}
.feature-slide--highlight::after {
    background: linear-gradient(90deg, rgba(0, 218, 243, 0.9) 0%, rgba(0, 218, 243, 0.15) 60%, transparent 100%);
    opacity: 1;
}
.feature-slide--magenta::after {
    background: linear-gradient(90deg, rgba(255, 75, 137, 0.85) 0%, rgba(255, 75, 137, 0.12) 60%, transparent 100%);
}
.feature-slide--magenta:hover {
    border-color: rgba(255, 75, 137, 0.4);
    box-shadow: 0 8px 32px rgba(255, 75, 137, 0.1);
}
.feature-slide-title {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F3F4F6;
    line-height: 1.55;
    margin: 0;
}
@media (min-width: 768px) {
    .feature-slide-title {
        font-size: 1.05rem;
    }
}
.feature-slide--highlight .feature-slide-title {
    color: #00daf3;
}
.feature-slide-tagline {
    color: #8B949E;
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .how-it-works-grid { gap: 2rem; }
}
.how-it-works-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.how-step-media {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: inherit;
}
.how-step-media:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 3px;
}
.how-step-media:not([data-lightbox-src]) {
    cursor: default;
}
.how-step-zoom-hint {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(10, 10, 18, 0.75);
    border: 1px solid rgba(0, 218, 243, 0.35);
    color: var(--color-cyan);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.how-step-media[data-lightbox-src]:hover .how-step-zoom-hint,
.how-step-media[data-lightbox-src]:focus-visible .how-step-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}
.how-it-works-card:hover .how-step-media {
    border-color: rgba(0, 218, 243, 0.35);
    box-shadow: 0 0 40px rgba(0, 218, 243, 0.12);
    transform: translateY(-4px);
}
.how-it-works-card:nth-child(2):hover .how-step-media {
    border-color: rgba(255, 75, 137, 0.35);
    box-shadow: 0 0 40px rgba(255, 75, 137, 0.12);
}
.how-it-works-card:nth-child(3):hover .how-step-media {
    border-color: rgba(0, 218, 243, 0.5);
    box-shadow: 0 0 48px rgba(0, 218, 243, 0.18);
}
.how-step-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.how-step-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background:
        linear-gradient(145deg, rgba(0, 218, 243, 0.06) 0%, rgba(10, 10, 18, 0.9) 45%, rgba(255, 75, 137, 0.04) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 3px
        );
    z-index: 1;
}
.how-it-works-card:nth-child(2) .how-step-placeholder {
    background:
        linear-gradient(145deg, rgba(255, 75, 137, 0.06) 0%, rgba(10, 10, 18, 0.9) 50%, rgba(0, 218, 243, 0.04) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(255, 255, 255, 0.015) 24px, rgba(255, 255, 255, 0.015) 25px);
}
.how-step-placeholder-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 218, 243, 0.1);
    border: 1px solid rgba(0, 218, 243, 0.25);
    box-shadow: 0 0 20px rgba(0, 218, 243, 0.15);
}
.how-it-works-card:nth-child(2) .how-step-placeholder-icon {
    background: rgba(255, 75, 137, 0.1);
    border-color: rgba(255, 75, 137, 0.25);
    box-shadow: 0 0 20px rgba(255, 75, 137, 0.15);
}
.how-step-placeholder-label {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(139, 148, 158, 0.9);
    text-transform: uppercase;
}
.how-step-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.75) 0%, transparent 45%);
    z-index: 3;
    pointer-events: none;
}
.how-step-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.65rem;
    border-radius: 0.35rem;
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(0, 218, 243, 0.4);
    color: #00daf3;
    box-shadow: 0 0 12px rgba(0, 218, 243, 0.25);
}
.how-it-works-card:nth-child(2) .how-step-badge {
    border-color: rgba(255, 75, 137, 0.4);
    color: #ff4b89;
    box-shadow: 0 0 12px rgba(255, 75, 137, 0.25);
}
.how-it-works-card:nth-child(3) .how-step-badge {
    background: rgba(0, 218, 243, 0.15);
    border-color: #00daf3;
    color: #c3f5ff;
}
.how-step-body {
    padding: 0 0.25rem;
    text-align: center;
}
@media (min-width: 768px) {
    .how-step-body { text-align: right; }
}
.how-step-title {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F3F4F6;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
@media (min-width: 768px) {
    .how-step-title { font-size: 1.35rem; }
}
.how-it-works-card:nth-child(3) .how-step-title {
    color: #00daf3;
    text-shadow: 0 0 20px rgba(0, 218, 243, 0.4);
}
.how-step-desc {
    color: #8B949E;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}
@media (min-width: 768px) {
    .how-step-desc { font-size: 1rem; }
}
/* Supported Games Section */
.supported-games-section {
    position: relative;
    min-height: 620px;
    border-radius: 1.6rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 218, 243, 0.08) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(140deg, #0b1428 0%, #0f1830 38%, #101b34 100%);
    box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.45), 0 24px 70px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.supported-games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 52%, rgba(5, 10, 20, 0.08) 0%, rgba(5, 10, 20, 0.32) 42%, rgba(5, 10, 20, 0.5) 100%),
        linear-gradient(180deg, rgba(4, 8, 18, 0.12), rgba(4, 8, 18, 0.26));
    pointer-events: none;
    z-index: 2;
}
.supported-games-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 48% 40% at 50% 50%, rgba(10, 10, 18, 0.7) 0%, transparent 68%);
    pointer-events: none;
    z-index: 3;
}
.games-center-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
    pointer-events: none;
    padding: 1.5rem;
}
.games-copy-card {
    max-width: 34rem;
    width: 100%;
    padding: 1.5rem 2rem 1.4rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.9) 0%, rgba(10, 10, 18, 0.78) 100%);
    border: 1px solid rgba(0, 218, 243, 0.18);
    border-top: 2px solid #00daf3;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 218, 243, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.games-copy-eyebrow {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #00daf3;
    margin-bottom: 0.65rem;
    direction: ltr;
    unicode-bidi: isolate;
}
.games-copy-title {
    font-family: 'IRANYekanX', 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 3.2vw, 1.75rem);
    font-weight: 800;
    color: #F3F4F6;
    line-height: 1.45;
    margin-bottom: 0.5rem;
}
.games-copy-desc {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    color: #8B949E;
    line-height: 1.75;
    margin: 0;
}
.games-cloud {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.game-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 168px;
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}
.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 218, 243, 0.45);
    box-shadow: 0 10px 24px rgba(0, 218, 243, 0.12);
}
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}
.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(7, 12, 22, 0.06));
    pointer-events: none;
    opacity: 0.35;
}
@media (max-width: 1024px) {
    .supported-games-section { min-height: 640px; }
    .games-copy-card { max-width: 32rem; }
    .games-cloud {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
        padding: 0.9rem;
    }
    .game-card { min-height: 128px; }
}
@media (max-width: 767px) {
    .supported-games-section {
        min-height: 700px;
        padding: 2rem 1rem;
    }
    .supported-games-section::after {
        background: radial-gradient(ellipse 90% 32% at 50% 22%, rgba(10, 10, 18, 0.88) 0%, transparent 72%);
    }
    .games-copy-card {
        max-width: 100%;
        padding: 1.25rem 1.35rem 1.15rem;
    }
    .games-center-content {
        position: relative;
        margin-bottom: 1.5rem;
        pointer-events: auto;
    }
    .games-cloud {
        position: relative;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(5, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0;
    }
    .game-card {
        min-height: 86px;
    }
    .game-card img {
        height: 100%;
    }
}

/* Roadmap / upcoming features */
.roadmap-section {
    position: relative;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.roadmap-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--color-cyan);
    line-height: 1.45;
    margin-bottom: 0.85rem;
}
.roadmap-card__desc {
    color: var(--color-text-muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}

@media (min-width: 768px) {
    .how-step-desc { font-size: 1rem; }
}

/* How It Works lightbox */
body.how-step-lightbox-open {
    overflow: hidden;
}
.how-step-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.how-step-lightbox[hidden] {
    display: none;
}
.how-step-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.how-step-lightbox__frame {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(92vw, 72rem);
    max-height: 88vh;
    animation: how-step-lightbox-in 0.28s ease;
}
.how-step-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 218, 243, 0.25);
    box-shadow: 0 0 60px rgba(0, 218, 243, 0.15);
    object-fit: contain;
}
.how-step-lightbox__close {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(10, 10, 18, 0.95);
    color: var(--color-text-main);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.how-step-lightbox__close:hover,
.how-step-lightbox__close:focus-visible {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    outline: none;
}
@keyframes how-step-lightbox-in {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer social */
.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.footer-social-link:hover {
    color: var(--color-cyan);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 218, 243, 0.45));
}

/* FAQ Section */
.faq-item {
    transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 218, 243, 0.3);
    background: rgba(255, 255, 255, 0.04);
}
