/* WinPlus Asia — player-focused: clean type, one accent, minimal chrome */

:root {
    --bg: #090a0d;
    --bg-elevated: #101218;
    --surface: #16181f;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #f4c430;
    --accent-hover: #ffd54f;
    --accent-muted: rgba(244, 196, 48, 0.15);
    --text: #f2f2f4;
    --muted: #9a9aa8;
    --font: "DM Sans", system-ui, -apple-system, sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --header-h: 64px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--accent-hover);
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: 640px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.75rem;
    }
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2rem, 5.5vw, 2.85rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 10, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header--scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 0.75rem;
}

.header-spacer {
    height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
}

.logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.logo__asia {
    color: var(--accent);
    font-weight: 600;
}

.logo--footer .logo__mark {
    width: 42px;
    height: 42px;
}

.nav--desktop {
    display: none;
    align-items: center;
    gap: 0.15rem;
}

@media (min-width: 900px) {
    .nav--desktop {
        display: flex;
    }
}

.nav__link {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav__link--active {
    color: #111;
    background: var(--accent);
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.icon--nav {
    width: 1rem;
    height: 1rem;
    opacity: 0.85;
}

.icon--sm {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--accent);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hide-mobile {
    display: none;
}

@media (min-width: 900px) {
    .hide-mobile {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 0.4rem;
    cursor: pointer;
}

@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 1rem;
    overflow-y: auto;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-menu__link {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--surface);
    border: 1px solid var(--border);
}

.mobile-menu__link--active,
.mobile-menu__link.nav__link--active {
    border-color: var(--accent);
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.2rem;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary,
.btn--gold {
    background: var(--accent);
    color: #14120a;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.25);
}

.btn--primary:hover,
.btn--gold:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
    color: #14120a;
}

.btn--secondary,
.btn--outline-gold {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--secondary:hover,
.btn--outline-gold:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn--sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
}

.btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

/* Hero — player */
.hero--player {
    padding: 2.5rem 0 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero--player {
        padding: 3.5rem 0 2.5rem;
    }
}

.hero__center {
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero__title {
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero__accent {
    color: var(--accent);
    display: inline;
}

.hero__lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero__micro {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 600px) {
    .stats-strip {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }
}

.stat-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 0.5rem;
    text-align: center;
}

.stat-pill__val {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.stat-pill__lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 0.25rem;
    display: block;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.hero-meta__item strong {
    color: var(--text);
    font-weight: 600;
}

.text-accent {
    color: var(--accent);
}

.hero-rtp {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Sections */
.section {
    padding: 2.75rem 0;
}

.section--tight {
    padding: 2.25rem 0;
}

.section--muted {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.section-head {
    margin-bottom: 1.75rem;
}

.section-head--center {
    text-align: center;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.section-head__title {
    margin-bottom: 0.5rem;
}

.section-head__sub {
    color: var(--muted);
    font-size: 0.98rem;
}

/* Legacy section titles (inner pages) */
.section__head {
    margin-bottom: 1.5rem;
}

.section__kicker {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.section__title {
    margin-bottom: 0.45rem;
    font-size: 1.35rem;
}

.section__desc {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Game grid */
.grid-2 {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 560px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-2--games {
    gap: 0.65rem;
}

@media (min-width: 900px) {
    .grid-2--games {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-3 {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-chip {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.15s ease;
}

.game-chip:hover {
    border-color: rgba(244, 196, 48, 0.35);
}

.game-chip__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--accent-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.game-chip__name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.game-chip__type {
    font-size: 0.78rem;
    color: var(--muted);
}

.theme-card {
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
}

.theme-card__label {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.theme-card__examples {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Player listicle */
.player-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem;
}

.player-card__title {
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
    text-align: center;
}

.player-list {
    list-style: none;
}

.player-list__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--muted);
}

.player-list__item:last-child {
    border-bottom: none;
}

.player-list__mark {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 6px;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-list__text {
    color: var(--text);
    line-height: 1.5;
}

/* Steps */
.steps__track {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .steps__track--simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .steps__track--simple {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem;
}

.step-card--simple {
    padding: 1.1rem;
}

.step-card__n {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
}

.step-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.step-card__text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Providers */
.provider-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: center;
}

.provider-list--compact li {
    border: none;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.provider-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Legacy stats / inner pages */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.stat-card__value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-card__label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 0.3rem;
}

.vertical-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.vertical-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: rgba(77, 171, 247, 0.12);
    color: #4dabf7;
}

.vertical-card--gold .vertical-card__icon {
    background: var(--accent-muted);
    color: var(--accent);
}

.vertical-card--live .vertical-card__icon {
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
}

.vertical-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.vertical-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.feature-list {
    list-style: none;
    margin: 0.75rem 0 0;
}

.feature-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.feature-list svg {
    color: #51cf66;
    flex-shrink: 0;
    margin-top: 2px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted);
}

.text-gold {
    color: var(--accent);
}

.listicle {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
}

.listicle__num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* CTA */
.section--cta {
    padding: 2.5rem 0;
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.cta-banner__inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner__inner {
        grid-template-columns: 1fr auto;
        text-align: left;
    }
}

.cta-banner__title {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
}

.cta-banner__subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 26rem;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-banner__actions {
        justify-content: flex-start;
    }
}

.cta-banner__svg {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Page hero inner */
.page-hero {
    padding: 2rem 0 1.75rem;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
}

.page-hero p {
    color: var(--muted);
    max-width: 38rem;
    font-size: 0.98rem;
}

.prose {
    max-width: 640px;
}

.prose h2 {
    margin: 1.75rem 0 0.6rem;
    font-size: 1.2rem;
}

.prose h3 {
    margin: 1.25rem 0 0.45rem;
    font-size: 1.05rem;
}

.prose p,
.prose li {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.prose ul,
.prose ol {
    margin: 0 0 0.75rem 1.1rem;
}

.promo-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: var(--surface);
    margin-bottom: 0.65rem;
}

.promo-card h3 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.promo-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin-bottom: 0.5rem;
    background: var(--surface);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #060708;
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 1.75rem;
    margin-top: 1rem;
}

.footer__grid {
    display: grid;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
    }
}

.footer__blurb {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    max-width: 26rem;
    line-height: 1.55;
}

.footer__heading {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__links a {
    color: var(--muted);
    font-size: 0.88rem;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__rg {
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.2);
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer__bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer__copy {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Infographic (help page etc.) */
.infographic {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 768px) {
    .infographic {
        grid-template-columns: 1fr 1fr;
    }
}

.infographic__bar {
    display: flex;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.infographic__segment {
    min-width: 4px;
}

.infographic__legend {
    list-style: none;
}

.infographic__legend li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.infographic__legend strong {
    margin-left: auto;
    color: var(--text);
}

.infographic__swatch {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.two-col {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

[data-animate].is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.mt-0 { margin-top: 0; }
.mb-1 { margin-bottom: 1rem; }
