:root {
    --bg: #14081e;
    --bg-soft: #211031;
    --panel: rgba(47, 22, 63, 0.82);
    --panel-strong: rgba(69, 31, 86, 0.92);
    --panel-muted: rgba(255, 255, 255, 0.06);
    --text: #fff7f2;
    --text-muted: #dbcddf;
    --text-soft: #b8a9c2;
    --line: rgba(255, 255, 255, 0.12);
    --gold: #ffbf3d;
    --gold-deep: #ff9d1b;
    --pink: #ff4f98;
    --pink-deep: #e52b72;
    --cyan: #55d7ff;
    --violet: #7e45ff;
    --success: #39c87a;
    --danger: #ff7a6a;
    --shadow: 0 24px 70px rgba(5, 2, 9, 0.38);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --content-width: 1180px;
    --header-height: 84px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 191, 61, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(85, 215, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #221234 0%, #160a22 40%, #100617 100%);
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(28px);
    opacity: 0.28;
}

body::before {
    top: -8rem;
    left: -9rem;
    background: rgba(255, 87, 151, 0.55);
}

body::after {
    right: -10rem;
    bottom: -12rem;
    background: rgba(85, 215, 255, 0.4);
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: #12081a;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

.site-shell {
    overflow: clip;
}

.container {
    width: min(var(--content-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(20, 8, 30, 0.74);
    border-bottom: 1px solid var(--line);
}

.trust-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.9rem;
    padding: 0.55rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.trust-strip-inner::-webkit-scrollbar {
    display: none;
}

.trust-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.56rem 0.92rem 0.56rem 0.76rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.trust-pill::before {
    content: "";
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 999px;
    flex: none;
    box-shadow: 0 0 0 0.34rem rgba(255, 255, 255, 0.05);
}

.trust-pill strong {
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-pill span {
    color: var(--text-soft);
    font-size: 0.71rem;
}

.trust-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.trust-pill-age::before {
    background: var(--gold);
}

.trust-pill-license::before {
    background: var(--cyan);
}

.trust-pill-security::before {
    background: var(--success);
}

.trust-pill-responsible::before {
    background: var(--pink);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    font-weight: 700;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(255, 191, 61, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy strong {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy span {
    display: block;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.35rem;
    height: 2px;
    margin: 0.22rem auto;
    background: currentColor;
    border-radius: 999px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0 0.95rem;
    border-radius: 999px;
    color: var(--text-muted);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    transform: translateY(-1px);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #1f0f05;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(255, 191, 61, 0.28);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mobile-header-cta {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #1f0f05;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(255, 191, 61, 0.26);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 191, 61, 0.24);
}

.page-hero {
    position: relative;
    padding: 4.5rem 0 2rem;
}

.page-hero-home {
    padding-bottom: 2.7rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
        radial-gradient(circle at 12% 16%, rgba(255, 191, 61, 0.16), transparent 18%),
        radial-gradient(circle at 88% 10%, rgba(85, 215, 255, 0.15), transparent 18%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.hero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 2.2rem;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-support {
    max-width: 50rem;
}

.hero-inline-visual {
    display: none;
    margin: 1.15rem 0 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 22px 52px rgba(7, 3, 14, 0.28);
}

.hero-inline-visual img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center 32%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 0.35rem rgba(255, 191, 61, 0.12);
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    line-height: 1.04;
}

@supports (content-visibility: auto) {
    .section,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 960px;
    }
}

h1 {
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.lede {
    font-size: 1.1rem;
    color: var(--text);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-points {
    display: grid;
    gap: 0.8rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding: 0.95rem 1rem 0.95rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    color: var(--text);
    line-height: 1.55;
    box-shadow: 0 14px 34px rgba(8, 4, 16, 0.18);
}

.hero-points li::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    box-shadow: 0 0 0 0.32rem rgba(255, 191, 61, 0.14);
}

.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #1f0f05;
    box-shadow: 0 16px 32px rgba(255, 191, 61, 0.26);
}

.button-secondary {
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    color: #fff8fb;
    box-shadow: 0 16px 32px rgba(229, 43, 114, 0.26);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.hero-card,
.panel,
.faq-item,
.table-wrap,
.note-card,
.support-card,
.legal-card,
.source-card,
.cta-band {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.stat {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.25rem;
    color: var(--text);
}

.stat span {
    display: block;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-media {
    position: relative;
}

.hero-stage {
    position: relative;
    min-height: 40rem;
    padding: 1rem 1.5rem 1.5rem 2rem;
}

.hero-stage-main {
    transform: rotate(-2deg);
}

.hero-stage-main img {
    aspect-ratio: 16 / 15;
    object-fit: cover;
    object-position: center 32%;
}

.hero-stage-float {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 54px rgba(6, 2, 12, 0.34);
}

.hero-stage-float img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-stage-paytable {
    top: 0;
    right: 0;
    width: min(46%, 18rem);
    transform: rotate(6deg);
}

.hero-stage-paytable img {
    aspect-ratio: 1 / 1.08;
    object-position: center 20%;
}

.hero-stage-rules {
    left: 0;
    bottom: 4.2rem;
    width: min(44%, 17rem);
    transform: rotate(-7deg);
}

.hero-stage-rules img {
    aspect-ratio: 1 / 1.12;
    object-position: center 18%;
}

.hero-stage-badge {
    position: absolute;
    right: 1rem;
    bottom: 0;
    width: min(62%, 20rem);
    backdrop-filter: blur(14px);
}

.hero-stage-badge strong {
    display: block;
    margin: 0.35rem 0 0.5rem;
    font-size: 1.14rem;
    line-height: 1.24;
}

.hero-stage-badge p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-stage-main {
        animation: hero-drift 6s ease-in-out infinite;
    }

    .hero-stage-paytable {
        animation: hero-card-rise 7s ease-in-out infinite;
    }

    .hero-stage-rules {
        animation: hero-card-float 8s ease-in-out infinite;
    }
}

@keyframes hero-drift {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes hero-card-rise {
    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(-10px) rotate(7deg);
    }
}

@keyframes hero-card-float {
    0%,
    100% {
        transform: translateY(0) rotate(-7deg);
    }

    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: min(2.4rem, 6vw);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 28px 70px rgba(6, 3, 12, 0.44);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: auto 1.2rem 1.2rem;
    height: 5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 191, 61, 0.32), transparent 70%);
    filter: blur(24px);
    z-index: 0;
}

.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tags,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1rem 0 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: 0.88rem;
}

.chip strong {
    color: var(--gold);
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.signal-card {
    position: relative;
    padding: 1.45rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.signal-card::after {
    content: "";
    position: absolute;
    right: -1.4rem;
    bottom: -2.4rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 79, 152, 0.22), transparent 70%);
    filter: blur(8px);
}

.signal-card h3 {
    margin-bottom: 0.75rem;
    max-width: 15rem;
}

.signal-card p {
    position: relative;
    margin-bottom: 0;
}

.signal-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(85, 215, 255, 0.2);
    background: rgba(85, 215, 255, 0.08);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-embed {
    border-radius: 32px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.demo-embed-shell {
    padding: 1.2rem;
}

.demo-embed-placeholder {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 1.2rem;
    align-items: center;
}

.demo-embed-poster {
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.demo-embed-poster img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center 30%;
}

.demo-embed-copy {
    padding: 0.4rem 0;
}

.demo-embed-copy h3 {
    margin: 0.7rem 0 0.8rem;
}

.demo-embed-copy .button-row {
    margin-top: 1.25rem;
}

.demo-embed-note {
    margin: 1rem 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.demo-embed-frame-wrap {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #12071a;
}

.demo-embed-frame {
    display: block;
    width: 100%;
    height: min(78vh, 1080px);
    border: 0;
    background: #12071a;
}

.breadcrumbs {
    padding: 1.1rem 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 0.55rem;
    color: rgba(255, 255, 255, 0.36);
}

.section {
    padding: 2.2rem 0;
}

.section-lg {
    padding: 3rem 0;
}

.section-header {
    max-width: 52rem;
    margin-bottom: 1.4rem;
}

.section-header p:last-child {
    margin-bottom: 0;
}

.section-grid,
.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.facts-grid,
.feature-grid,
.gallery-grid,
.support-grid,
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.facts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-card,
.feature-card,
.support-card,
.resource-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.fact-card strong,
.feature-card strong,
.support-card strong,
.resource-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fact-card span {
    display: block;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 700;
}

.feature-card p,
.support-card p,
.resource-card p {
    margin-bottom: 0;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead th {
    color: var(--gold);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

th,
td {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody td:first-child {
    color: var(--text);
    font-weight: 700;
}

.table-note {
    margin-top: 0.9rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.list-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.list-card h3 {
    margin-bottom: 0.9rem;
}

.list-card ul,
.article ul,
.article ol,
.legal-card ul,
.source-card ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
}

.list-card li,
.article li,
.legal-card li,
.source-card li {
    margin-bottom: 0.8rem;
    line-height: 1.65;
}

.gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}

.gallery-card img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
    width: 100%;
}

.gallery-card figcaption {
    padding: 1rem 1.05rem 1.1rem;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.article,
.legal-card,
.source-card,
.note-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.article h2 + p,
.legal-card h2 + p {
    margin-top: -0.15rem;
}

.rule-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.rule-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rule-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold);
}

.note-card {
    background: linear-gradient(135deg, rgba(255, 191, 61, 0.12), rgba(255, 79, 152, 0.12));
}

.note-card.warning {
    background: linear-gradient(135deg, rgba(255, 122, 106, 0.14), rgba(255, 191, 61, 0.12));
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.badge-success {
    background: rgba(57, 200, 122, 0.14);
    color: #9af1c2;
}

.badge-warning {
    background: rgba(255, 191, 61, 0.14);
    color: #ffd98b;
}

.badge-danger {
    background: rgba(255, 122, 106, 0.16);
    color: #ffc1b7;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    border-radius: 22px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-weight: 700;
}

.faq-question span:last-child {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.faq-item[open] .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem 1.15rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.steps {
    counter-reset: item;
    display: grid;
    gap: 1rem;
}

.step {
    position: relative;
    padding: 1.15rem 1.15rem 1.15rem 4.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.step::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #2b1500;
    font-weight: 800;
}

.step > strong:first-child {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.steps-visual {
    counter-reset: visual-step;
    display: grid;
    gap: 1.1rem;
}

.step-visual-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    padding: 1rem 1rem 1rem 4.5rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.step-visual-card::before {
    counter-increment: visual-step;
    content: counter(visual-step);
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.45rem;
    height: 2.45rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #2b1500;
    font-weight: 800;
    z-index: 1;
}

.step-visual-media {
    margin: 0;
    height: clamp(220px, 34vw, 320px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.step-visual-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.step-visual-body {
    align-self: center;
}

.step-visual-body strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.08rem;
}

.step-visual-body p:last-child {
    margin-bottom: 0;
}

.step-focus-rules {
    object-position: center top;
}

.step-focus-paytable {
    object-position: center 18%;
}

.step-focus-howto {
    object-position: center 22%;
}

.step-focus-gameplay {
    object-position: center 24%;
}

.step-focus-mobile {
    object-position: center top;
}

.source-card a,
.footer a,
.article a,
.list-card a,
.legal-card a,
.resource-card a {
    color: var(--cyan);
    text-decoration-color: rgba(85, 215, 255, 0.35);
}

.source-card a:hover,
.footer a:hover,
.article a:hover,
.list-card a:hover,
.legal-card a:hover,
.resource-card a:hover {
    text-decoration-color: currentColor;
}

.cta-band {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
}

.cta-band h2 {
    margin-bottom: 0.65rem;
}

.site-footer {
    margin-top: 2rem;
    padding: 2.4rem 0 3rem;
    border-top: 1px solid var(--line);
    background: rgba(9, 3, 14, 0.34);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, minmax(0, 0.7fr));
    gap: 1.4rem;
}

.footer-brand p,
.footer-note {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 0.55rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-meta {
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
    justify-content: space-between;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-inner {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(23, 10, 33, 0.94);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 1rem;
}

.cookie-copy p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.7rem;
}

.cookie-actions button {
    border: none;
    cursor: pointer;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

@media (max-width: 1080px) {
    .hero-grid,
    .facts-grid,
    .footer-grid,
    .rule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-showcase,
    .signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid,
    .facts-grid,
    .feature-grid,
    .demo-embed-placeholder,
    .resource-grid,
    .support-grid,
    .section-grid,
    .two-column,
    .pros-cons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .step-visual-card {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 0;
        max-width: 44rem;
        margin: 0 auto;
        padding: 1rem 2rem 1.8rem;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .trust-strip-inner {
        gap: 0.55rem;
        padding: 0.48rem 0;
    }

    .trust-pill {
        padding: 0.52rem 0.84rem 0.52rem 0.7rem;
    }

    .mobile-header-cta {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-panel {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.65rem);
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(23, 10, 33, 0.96);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav-panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list,
    .header-cta {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-list a {
        width: 100%;
        min-height: 3rem;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    body::before,
    body::after {
        display: none;
    }

    .site-header {
        backdrop-filter: none;
        background: rgba(20, 8, 30, 0.96);
    }

    .container {
        width: min(var(--content-width), calc(100% - 1.2rem));
    }

    .trust-strip-inner {
        min-height: 2.65rem;
        gap: 0.45rem;
        padding: 0.42rem 0;
    }

    .trust-pill {
        gap: 0.55rem;
        padding: 0.48rem 0.75rem 0.48rem 0.62rem;
    }

    .trust-pill strong {
        font-size: 0.68rem;
    }

    .trust-pill span {
        font-size: 0.65rem;
    }

    .page-hero {
        padding-top: 3.2rem;
    }

    .hero-card,
    .panel,
    .article,
    .legal-card,
    .source-card,
    .note-card,
    .cta-band {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .stat-strip,
    .facts-grid,
    .feature-grid,
    .gallery-grid,
    .demo-embed-placeholder,
    .support-grid,
    .resource-grid,
    .section-grid,
    .two-column,
    .pros-cons,
    .rule-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-inner,
    .hero-actions,
    .button-row {
        align-items: stretch;
    }

    .hero-actions a,
    .button-row a {
        width: 100%;
    }

    .page-hero-home .stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-home .stat {
        padding: 0.9rem 0.9rem 0.95rem;
    }

    .page-hero-home .stat strong {
        font-size: 1.05rem;
    }

    .hero-support {
        display: none;
    }

    .hero-inline-visual {
        display: block;
    }

    .hero-points {
        margin-top: 1rem;
    }

    .hero-points li {
        padding: 0.85rem 0.9rem 0.85rem 2.7rem;
        font-size: 0.95rem;
    }

    .hero-points li::before {
        left: 0.9rem;
    }

    .hero-stage {
        display: none;
    }

    .hero-stage-main {
        transform: none;
    }

    .hero-stage-float {
        display: none;
    }

    .hero-stage-badge {
        position: static;
        width: auto;
        margin-top: 1rem;
    }

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

    .mobile-header-cta {
        min-height: 2.4rem;
        padding: 0 0.8rem;
        font-size: 0.78rem;
    }

    .cookie-inner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
    }

    .demo-embed-shell {
        padding: 1rem;
    }

    .demo-embed-frame {
        height: min(72vh, 860px);
    }

    .step-visual-card {
        padding: 4.1rem 1rem 1rem;
    }

    .step-visual-card::before {
        top: 1rem;
        left: 1rem;
    }

    table {
        min-width: 620px;
    }
}
