:root {
    --bg-deep: #0a0417;
    --bg-panel: #140a2b;
    --bg-panel-2: #1c0f3d;
    --violet: #7c3aed;
    --violet-bright: #a855f7;
    --magenta: #d946ef;
    --cyan: #22d3ee;
    --gold: #fbbf24;
    --text: #f4f0ff;
    --text-muted: #b6a9d8;
    --border: rgba(168, 85, 247, 0.22);
    --shadow-glow: 0 20px 60px rgba(124, 58, 237, 0.35);
    --font-head: "Sora", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: radial-gradient(1200px 700px at 80% -10%, rgba(124, 58, 237, 0.28), transparent 60%),
                radial-gradient(900px 600px at 0% 10%, rgba(34, 211, 238, 0.12), transparent 55%),
                var(--bg-deep);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.topbar {
    background: linear-gradient(90deg, #150a30, #2a1155 55%, #150a30);
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
}

.topbar__text {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.4;
}

.topbar__text i {
    color: var(--cyan);
    flex-shrink: 0;
}

.topbar__badge {
    flex-shrink: 0;
    white-space: nowrap;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
}

.site-header {
    background: rgba(12, 6, 28, 0.85);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.site-nav {
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand__mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--violet), var(--magenta));
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 8px 22px rgba(168, 85, 247, 0.45);
    position: relative;
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand__glyph {
    font-family: "Segoe UI Symbol", "Noto Sans Symbols2", "Noto Sans Symbols", system-ui, sans-serif;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.brand__accent {
    color: var(--violet-bright);
}

.brand__suffix {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 3px;
}

.brand__dot {
    color: var(--text-muted);
}

.nav-burger {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem 0.6rem;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(124, 58, 237, 0.12);
}

.nav-burger:focus {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.35);
}

.nav-burger__bar {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(2) {
    opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__list {
    gap: 0.2rem;
    align-items: center;
}

.site-nav__list .nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__list .nav-link i {
    font-size: 0.85rem;
    color: var(--violet-bright);
    transition: color 0.2s ease;
}

.site-nav__list .nav-link:hover,
.site-nav__list .nav-link:focus {
    color: var(--text);
    background: rgba(124, 58, 237, 0.16);
}

.site-nav__list .nav-link.active {
    color: var(--text);
    background: rgba(124, 58, 237, 0.24);
}

.site-nav__list .nav-link.active i {
    color: var(--cyan);
}

.nav-cta {
    margin-left: 1rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: 0 10px 24px rgba(217, 70, 239, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(217, 70, 239, 0.5);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url("/assets/images/hero-bg.png") center right / cover no-repeat;
    opacity: 0.9;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-deep) 8%, rgba(10, 4, 23, 0.82) 42%, rgba(10, 4, 23, 0.25) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    padding-bottom: 5rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.hero__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1.08;
    margin: 1.3rem 0 1.1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #ffffff 30%, var(--violet-bright) 70%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.6rem;
}

.hero__btn {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: var(--shadow-glow);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 26px 50px rgba(217, 70, 239, 0.5);
}

.hero__btn--ghost {
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.hero__btn--ghost:hover,
.hero__btn--ghost:focus {
    color: #fff;
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
}

.hero__stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.hero__stats li {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.9rem;
    color: #fff;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero__card {
    position: relative;
    border-radius: 22px;
    padding: 1.9rem;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.92), rgba(20, 10, 43, 0.92));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.hero__card-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.5), transparent 70%);
    filter: blur(20px);
}

.hero__card-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.hero__card-tag,
.hero__card-live {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.hero__card-tag {
    color: var(--gold);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero__card-live {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.hero__card-title {
    position: relative;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.hero__card-text {
    position: relative;
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 1.2rem;
}

.hero__card-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.7rem;
}

.hero__card-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text);
}

.hero__card-list i {
    color: var(--violet-bright);
}

.hero__card-btn {
    position: relative;
    width: 100%;
    font-family: var(--font-head);
    font-weight: 600;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__card-btn:hover,
.hero__card-btn:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(34, 211, 238, 0.4);
}

.hero__marquee {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 4, 23, 0.6);
    padding: 0.9rem 0;
    overflow: hidden;
}

.hero__marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.hero__marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero__marquee-track i {
    color: var(--violet-bright);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.games {
    position: relative;
    padding: 5rem 0 5.5rem;
}

.games__head {
    max-width: 42rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.games__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet-bright);
    border: 1px solid var(--border);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.games__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    margin: 1.1rem 0 0.9rem;
    letter-spacing: -0.02em;
}

.games__lead {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

.game-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.9), rgba(18, 9, 38, 0.95));
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(10, 4, 23, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.55);
    box-shadow: var(--shadow-glow);
}

.game-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card__media img {
    transform: scale(1.06);
}

.game-card__badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    background: rgba(10, 4, 23, 0.7);
    border: 1px solid var(--border);
    backdrop-filter: blur(6px);
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
}

.game-card__badge i {
    color: var(--cyan);
}

.game-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem;
}

.game-card__name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}

.game-card__name a {
    color: var(--text);
    transition: color 0.2s ease;
}

.game-card__name a:hover,
.game-card__name a:focus {
    color: var(--violet-bright);
}

.game-card__text {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0 0 1.3rem;
    flex: 1;
}

.game-card__btn {
    align-self: flex-start;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: 0 10px 24px rgba(217, 70, 239, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card__btn:hover,
.game-card__btn:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(217, 70, 239, 0.48);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet-bright);
    border: 1px solid var(--border);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.section-eyebrow i {
    color: var(--cyan);
}

.section-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    margin: 1.1rem 0 0.9rem;
    letter-spacing: -0.02em;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

.section-head {
    max-width: 42rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.about {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.about__text {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.about__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.about__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.about__pill i {
    color: var(--cyan);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.about__stat {
    padding: 1.8rem 1.4rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.9), rgba(18, 9, 38, 0.95));
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.about__stat:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.55);
}

.about__stat-num {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.2rem;
    background: linear-gradient(120deg, #fff, var(--violet-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__stat-label {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.steps {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.step-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.7rem;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.9), rgba(18, 9, 38, 0.95));
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.55);
}

.step-card__num {
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(168, 85, 247, 0.16);
    line-height: 1;
}

.step-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(145deg, var(--violet), var(--magenta));
    box-shadow: 0 10px 24px rgba(168, 85, 247, 0.4);
    margin-bottom: 1.2rem;
}

.step-card__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.step-card__text {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

.features {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.feature-card {
    height: 100%;
    padding: 1.9rem 1.6rem;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.75), rgba(18, 9, 38, 0.85));
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 18px 40px rgba(10, 4, 23, 0.5);
}

.feature-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.3rem;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    margin-bottom: 1.1rem;
}

.feature-card__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}

.feature-card__text {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

.disclaimer-band {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
}

.disclaimer-band__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(217, 70, 239, 0.12));
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.disclaimer-band__item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.disclaimer-band__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.35rem;
    color: var(--gold);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.disclaimer-band__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.disclaimer-band__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(12, 6, 28, 0.6), rgba(8, 3, 18, 0.95));
    padding: 4rem 0 2rem;
}

.brand--footer {
    margin-bottom: 1.3rem;
}

.site-footer__about {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 22rem;
}

.site-footer__contact {
    display: grid;
    gap: 0.55rem;
}

.site-footer__contact p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.site-footer__contact i {
    color: var(--cyan);
    width: 18px;
    text-align: center;
}

.site-footer__contact a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.site-footer__contact a:hover {
    color: var(--text);
}

.site-footer__heading {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.1rem;
    color: var(--text);
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.site-footer__list a {
    color: var(--text-muted);
    font-size: 0.93rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus {
    color: var(--violet-bright);
    padding-left: 4px;
}

.site-footer__list--org a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer__list--org i {
    font-size: 0.75rem;
    color: var(--cyan);
}

.site-footer__age {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.site-footer__age-badge {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--gold);
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.site-footer__notice {
    margin-top: 2.6rem;
    padding: 1.3rem 1.5rem;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.28);
}

.site-footer__notice p {
    margin: 0;
    display: flex;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.site-footer__notice i {
    color: var(--gold);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem;
}

.site-footer__bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .site-nav__menu {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 16px;
        background: rgba(20, 10, 43, 0.96);
        border: 1px solid var(--border);
    }

    .site-nav__list {
        align-items: stretch;
        gap: 0.15rem;
    }

    .site-nav__list .nav-link {
        padding: 0.75rem 0.9rem;
    }

    .nav-cta {
        margin: 0.8rem 0 0;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(10, 4, 23, 0.75), rgba(10, 4, 23, 0.92));
    }

    .hero__card {
        margin-top: 0.5rem;
    }

    .disclaimer-band__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .topbar__badge {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-band__inner {
        padding: 1.6rem;
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .hero__actions .hero__btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

body.no-scroll {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(6, 3, 14, 0.82);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.age-gate.is-visible {
    opacity: 1;
}

.age-gate__box {
    position: relative;
    width: 100%;
    max-width: 34rem;
    padding: 2.6rem 2.2rem 2rem;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(165deg, rgba(28, 15, 61, 0.98), rgba(16, 8, 34, 0.98));
    border: 1px solid rgba(168, 85, 247, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.35s ease;
}

.age-gate.is-visible .age-gate__box {
    transform: translateY(0) scale(1);
}

.age-gate__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.45), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.age-gate__badge {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 1.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold);
    border: 3px solid var(--gold);
    background: rgba(251, 191, 36, 0.08);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.age-gate__title {
    position: relative;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
}

.age-gate__text {
    position: relative;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.age-gate__check {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.4rem;
    cursor: pointer;
}

.age-gate__check input {
    margin-top: 0.15rem;
    width: 20px;
    height: 20px;
    accent-color: var(--violet-bright);
    flex-shrink: 0;
    cursor: pointer;
}

.age-gate__check a {
    color: var(--violet-bright);
}

.age-gate__btn {
    position: relative;
    width: 100%;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.age-gate__btn:hover:not(:disabled),
.age-gate__btn:focus:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(217, 70, 239, 0.5);
}

.age-gate__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.age-gate__note {
    position: relative;
    margin: 1.1rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1500;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(28, 15, 61, 0.98), rgba(16, 8, 34, 0.98));
    border: 1px solid rgba(168, 85, 247, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 1.1rem 1.4rem;
    flex-wrap: wrap;
}

.cookie-consent__text {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1 1 320px;
}

.cookie-consent__text i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.cookie-consent__text a {
    color: var(--violet-bright);
}

.cookie-consent__actions {
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-consent__btn--solid {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: 0 10px 24px rgba(217, 70, 239, 0.35);
}

.cookie-consent__btn--solid:hover,
.cookie-consent__btn--solid:focus {
    transform: translateY(-2px);
}

.cookie-consent__btn--ghost {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
}

.cookie-consent__btn--ghost:hover,
.cookie-consent__btn--ghost:focus {
    border-color: var(--violet-bright);
    color: #fff;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(900px 400px at 80% -20%, rgba(124, 58, 237, 0.3), transparent 60%),
                radial-gradient(700px 400px at 0% 0%, rgba(34, 211, 238, 0.12), transparent 55%);
    text-align: center;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.page-hero__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 1.2rem 0 1rem;
    background: linear-gradient(120deg, #ffffff 30%, var(--violet-bright) 70%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero__lead {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-section {
    padding: 4.5rem 0;
}

.page-section--tight {
    padding: 3rem 0;
}

.prose {
    max-width: 52rem;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.prose h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    margin: 2.4rem 0 1rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text);
    margin: 1.8rem 0 0.7rem;
}

.prose p {
    margin-bottom: 1.1rem;
}

.prose ul {
    margin: 0 0 1.2rem;
    padding-left: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.6rem;
}

.prose ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.8rem;
    color: var(--violet-bright);
}

.prose a {
    color: var(--violet-bright);
}

.prose strong {
    color: var(--text);
}

.info-card {
    padding: 2rem 1.8rem;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.9), rgba(18, 9, 38, 0.95));
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.55);
}

.info-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(145deg, var(--violet), var(--magenta));
    margin-bottom: 1.1rem;
}

.info-card__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.faq {
    max-width: 52rem;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq__item {
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(28, 15, 61, 0.85), rgba(18, 9, 38, 0.9));
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq__item[open] {
    border-color: rgba(168, 85, 247, 0.55);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q i {
    color: var(--violet-bright);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq__item[open] .faq__q i {
    transform: rotate(180deg);
}

.faq__a {
    padding: 0 1.4rem 1.3rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.contact-email {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    padding: 2.6rem 2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(217, 70, 239, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.contact-email__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(145deg, var(--violet), var(--magenta));
    box-shadow: var(--shadow-glow);
}

.contact-email__label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-email__addr {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    word-break: break-word;
}

.contact-email__addr:hover {
    color: var(--violet-bright);
}

.disclaimer-note {
    max-width: 52rem;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 0.9rem;
    padding: 1.3rem 1.5rem;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.disclaimer-note i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1;
    }
}

.game-page {
    padding: 3.5rem 0 4.5rem;
}

.game-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.game-back:hover {
    color: var(--violet-bright);
}

.game-head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.game-head__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.game-head__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.02em;
    margin: 1rem 0 0.6rem;
    background: linear-gradient(120deg, #ffffff 30%, var(--violet-bright) 70%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-head__sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}

.game-stage {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.2rem;
    border-radius: 26px;
    background: linear-gradient(165deg, rgba(28, 15, 61, 0.95), rgba(14, 7, 30, 0.98));
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.game-stage::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.25), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.game-hud {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.game-stat {
    text-align: center;
    padding: 0.7rem 1.4rem;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid var(--border);
    min-width: 120px;
}

.game-stat__label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.game-stat__value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.game-msg {
    position: relative;
    text-align: center;
    min-height: 2.2rem;
    margin: 1.6rem auto 0;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cyan);
    transition: color 0.2s ease;
}

.game-msg.is-highlight {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(251, 191, 36, 0.5);
}

.game-controls {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.g-btn {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.9rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    box-shadow: 0 12px 28px rgba(217, 70, 239, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.g-btn:hover:not(:disabled),
.g-btn:focus:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(217, 70, 239, 0.5);
}

.g-btn--ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: none;
}

.g-btn--ghost:hover:not(:disabled),
.g-btn--ghost:focus:not(:disabled) {
    border-color: var(--cyan);
    color: #fff;
}

.g-btn--cyan {
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    box-shadow: 0 12px 28px rgba(34, 211, 238, 0.35);
}

.g-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slot-window {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.6rem;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.25), rgba(10, 4, 23, 0.9));
    border: 1px solid var(--border);
}

.slot-reel {
    height: 130px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(20, 10, 43, 0.95), rgba(12, 6, 28, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.35);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

.slot-reel__symbol {
    font-size: 3.4rem;
    line-height: 1;
    transition: transform 0.1s ease;
}

.slot-reel.is-spinning .slot-reel__symbol {
    animation: slotSpin 0.14s linear infinite;
}

.slot-reel.is-hit {
    border-color: var(--gold);
    box-shadow: 0 0 26px rgba(251, 191, 36, 0.55);
}

@keyframes slotSpin {
    0% { transform: translateY(-14px); opacity: 0.5; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0.5; }
}

.sym-heart { color: #f472b6; }
.sym-gem { color: #38bdf8; }
.sym-star { color: #fbbf24; }
.sym-crown { color: #f59e0b; }
.sym-bell { color: #fbbf24; }
.sym-lemon { color: #facc15; }
.sym-clover { color: #34d399; }

.card__glyph {
    font-family: "Segoe UI Symbol", "Noto Sans Symbols2", "Noto Sans Symbols", system-ui, sans-serif;
}

.bj-table {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.bj-side__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.bj-score {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 999px;
    padding: 0.15rem 0.7rem;
}

.bj-hand {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    min-height: 118px;
    padding: 1rem;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.18), rgba(10, 4, 23, 0.6));
    border: 1px solid var(--border);
}

.card {
    width: 76px;
    height: 104px;
    border-radius: 12px;
    background: linear-gradient(160deg, #fdfbff, #e9e2fb);
    color: #1a0e33;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0.6rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
    animation: cardDeal 0.35s ease;
}

.card--red {
    color: #d6266b;
}

.card--back {
    background: linear-gradient(160deg, var(--violet), var(--magenta));
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card--back .card__center {
    color: rgba(255, 255, 255, 0.85);
    margin: auto;
    font-size: 1.6rem;
}

.card__rank {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
}

.card__suit {
    font-size: 1rem;
    text-align: right;
}

.card__center {
    text-align: center;
    font-size: 1.5rem;
}

@keyframes cardDeal {
    from { transform: translateY(-16px) rotate(-6deg); opacity: 0; }
    to { transform: translateY(0) rotate(0); opacity: 1; }
}

.roulette {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.roulette__wheel-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

.roulette__pointer {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 22px solid var(--gold);
    z-index: 5;
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.6));
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid rgba(168, 85, 247, 0.5);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.4);
    transition: transform 5s cubic-bezier(0.12, 0.7, 0.1, 1);
    overflow: hidden;
}

.wheel__pocket {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 50%;
    transform-origin: bottom center;
    margin-left: -12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
}

.wheel__num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.62rem;
    color: #fff;
}

.pk-red { background: linear-gradient(180deg, #e11d64, #7f1030); }
.pk-black { background: linear-gradient(180deg, #2a1650, #100722); }
.pk-green { background: linear-gradient(180deg, #10b981, #065f46); }

.wheel__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--violet-bright), var(--violet));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.7);
    z-index: 4;
}

.roulette__result {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    border: 2px solid var(--border);
    background: rgba(10, 4, 23, 0.6);
}

.roulette__bets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

.bet-chip {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(124, 58, 237, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bet-chip:hover {
    transform: translateY(-2px);
    border-color: var(--violet-bright);
}

.bet-chip.is-active {
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.4);
}

.bet-chip--red.is-active { background: linear-gradient(135deg, #e11d64, #b01050); }
.bet-chip--black.is-active { background: linear-gradient(135deg, #3a2166, #16092e); }

.game-note {
    max-width: 720px;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 0.9rem;
    padding: 1.3rem 1.5rem;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.game-note i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .game-stage {
        padding: 1.4rem;
    }

    .slot-window {
        padding: 1rem;
        gap: 0.6rem;
    }

    .slot-reel__symbol {
        font-size: 2.4rem;
    }

    .card {
        width: 62px;
        height: 86px;
    }

    .roulette__wheel-wrap,
    .wheel {
        width: 260px;
        height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero__marquee-track {
        animation: none;
    }
}
