:root {
    --bg: #1a0a2e;
    --surface: #2d1155;
    --surface2: #3d1a70;
    --border: #4a2280;
    --accent: #a855f7;
    --accent2: #f0abfc;
    --text: #fdf4ff;
    --muted: #c084fc;
    --btn-gradient: linear-gradient(135deg, #a855f7, #7c3aed);
    --divider: linear-gradient(90deg, #a855f7, transparent);
    --radius: 12px;
    --radius-sm: 8px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --max-w: 1180px;
    --narrow-w: 780px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

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

a {
    color: var(--accent2);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus-visible {
    color: #fff;
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 3px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: var(--space-xs); }

p {
    margin-bottom: var(--space-sm);
}

.wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.narrow-wrap {
    max-width: var(--narrow-w);
}

/* ===== HEADER / MASTHEAD ===== */

.masthead {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 10, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.masthead-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
}

.brand-mark:hover {
    color: var(--accent2);
}

.brand-mark svg {
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.topnav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
}

.topnav.is-open {
    display: block;
}

.topnav ul {
    display: flex;
    flex-direction: column;
}

.topnav li a {
    display: block;
    padding: 0.7rem var(--space-md);
    color: var(--muted);
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
}

.topnav li a:hover,
.topnav li a.active {
    color: #fff;
    background: rgba(168, 85, 247, 0.1);
}

/* ===== BREADCRUMBS ===== */

.crumbs {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.crumbs-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.65rem var(--space-md);
}

.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.crumbs li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
}

.crumbs li::after {
    content: "›";
    color: var(--border);
}

.crumbs li:last-child::after {
    content: "";
}

.crumbs li:last-child {
    color: var(--accent2);
}

.crumbs a {
    color: var(--muted);
}

.crumbs a:hover {
    color: var(--accent2);
}

/* ===== HERO / HERALD ===== */

.herald {
    background: var(--bg);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
}

.herald h1 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.herald-intro {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
}

/* ===== ARENA / SHOWCASE ===== */

.arena {
    background: var(--surface);
    padding: var(--space-xl) 0;
}

.arena h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.arena h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) auto 0;
    border-radius: 2px;
}

.arena-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contender {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    padding-top: calc(var(--space-md) + 8px);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contender:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.15);
}

.contender-rank {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 2;
}

.contender-rank span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--btn-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius) 0 var(--radius) 0;
}

.contender-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    min-height: 56px;
}

.contender-brand img {
    width: 140px;
    height: 48px;
    object-fit: contain;
}

.contender-offer {
    text-align: center;
}

.contender-offer strong {
    display: block;
    color: var(--accent2);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contender-offer em {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 2px;
}

.contender-summary {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.contender-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--btn-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: box-shadow var(--transition), transform var(--transition);
}

.contender-action:hover,
.contender-action:focus-visible {
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== CRITERIA / HOW WE RATE ===== */

.criteria {
    background: var(--bg);
    padding: var(--space-xl) 0;
}

.criteria > .wrap > h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.criteria > .wrap > p {
    max-width: 720px;
    color: var(--muted);
    margin-bottom: var(--space-lg);
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.criteria-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: border-color var(--transition);
}

.criteria-card:hover {
    border-color: var(--accent);
}

.criteria-icon {
    margin-bottom: var(--space-xs);
}

.criteria-card h3 {
    font-size: 1.05rem;
    color: #fff;
}

.criteria-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0;
}

.criteria-link {
    font-weight: 600;
}

/* ===== SPOTLIGHT / REVIEWS ===== */

.spotlight {
    background: var(--surface);
    padding: var(--space-xl) 0;
}

.spotlight h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.spotlight-lead {
    max-width: 720px;
    color: var(--muted);
    margin-bottom: var(--space-lg);
}

.review-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.review-block:last-of-type {
    margin-bottom: 0;
}

.review-block h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.review-block p {
    color: var(--muted);
    font-size: 0.95rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.pros, .cons {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}

.pros h4 {
    color: #4ade80;
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cons h4 {
    color: #f87171;
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: 700;
}

.review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: var(--btn-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.review-cta:hover,
.review-cta:focus-visible {
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== EXPLAINER ===== */

.explainer {
    background: var(--bg);
    padding: var(--space-xl) 0;
}

.explainer h2 {
    margin-bottom: var(--space-sm);
}

.explainer h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.explainer p {
    max-width: 780px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===== LEGAL INFO ===== */

.legal-info {
    background: var(--surface);
    padding: var(--space-xl) 0;
}

.legal-info h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.legal-info p {
    max-width: 780px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===== PATHWAY / STEPS ===== */

.pathway {
    background: var(--bg);
    padding: var(--space-xl) 0;
}

.pathway > .wrap > h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.pathway > .wrap > p {
    color: var(--muted);
    margin-bottom: var(--space-lg);
    max-width: 720px;
}

.pathway-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    counter-reset: none;
}

.pathway-steps li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: border-color var(--transition);
}

.pathway-steps li:hover {
    border-color: var(--accent);
}

.step-marker {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--btn-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
}

.step-body h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step-body p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== BONUS GUIDE ===== */

.bonus-guide {
    background: var(--surface);
    padding: var(--space-xl) 0;
}

.bonus-guide > .wrap > h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.bonus-guide > .wrap > p,
.bonus-guide > .wrap > h3 + p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 780px;
}

.bonus-guide h3 {
    color: var(--accent2);
    margin-top: var(--space-md);
}

/* ===== LEDGER / TABLE ===== */

.ledger-wrap {
    margin-top: var(--space-lg);
}

.ledger-wrap h3 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.ledger-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.ledger {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.ledger thead {
    background: var(--surface2);
}

.ledger th {
    padding: 0.8rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--accent2);
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}

.ledger td {
    padding: 0.75rem 1rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.ledger tbody tr {
    background: var(--bg);
    transition: background var(--transition);
}

.ledger tbody tr:nth-child(even) {
    background: rgba(45, 17, 85, 0.4);
}

.ledger tbody tr:hover {
    background: rgba(168, 85, 247, 0.08);
}

.ledger td:first-child {
    color: #fff;
    font-weight: 600;
}

/* ===== CLOSING / VERDICT ===== */

.closing {
    background: var(--bg);
    padding: var(--space-xl) 0;
}

.closing h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.closing p {
    max-width: 780px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===== FAQ / INQUIRIES ===== */

.inquiries {
    background: var(--surface);
    padding: var(--space-xl) 0;
}

.inquiries h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.inquiries h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) auto 0;
    border-radius: 2px;
}

.accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.accordion-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.accordion-item[open] {
    border-color: var(--accent);
}

.accordion-item summary {
    cursor: pointer;
    padding: 1rem var(--space-md);
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    transition: background var(--transition);
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform var(--transition);
}

.accordion-item[open] summary::after {
    content: "−";
}

.accordion-item summary:hover {
    background: rgba(168, 85, 247, 0.06);
}

.accordion-body {
    padding: 0 var(--space-md) var(--space-md);
}

.accordion-body p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ===== FOOTER / COLOPHON ===== */

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

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

.colophon-brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.colophon-about p {
    color: var(--muted);
    font-size: 0.88rem;
}

.colophon-links h4,
.colophon-support h4 {
    color: var(--accent2);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-xs);
}

.colophon-links ul,
.colophon-support ul {
    list-style: none;
}

.colophon-links li,
.colophon-support li {
    margin-bottom: 0.35rem;
}

.colophon-links a,
.colophon-support a {
    color: var(--muted);
    font-size: 0.88rem;
}

.colophon-support li {
    color: var(--muted);
    font-size: 0.88rem;
}

.colophon-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
    text-align: center;
}

.colophon-bottom p {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 0;
}

/* ===== CONTENT BODY (SUBPAGES) ===== */

.content-body {
    background: var(--bg);
    padding: var(--space-lg) 0 var(--space-xl);
}

.content-body h2 {
    color: #fff;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--divider);
    margin: var(--space-xs) 0 0;
    border-radius: 2px;
}

.content-body h3 {
    color: var(--accent2);
    margin-top: var(--space-md);
}

.content-body p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 780px;
}

.content-body ul,
.content-body ol {
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
}

.content-body ul {
    list-style: disc;
}

.content-body ol {
    list-style: decimal;
}

.content-body li {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.content-body li strong {
    color: #fff;
}

/* ===== METHOD DETAIL ===== */

.method-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.method-detail h3 {
    color: #fff;
    margin-top: 0;
}

.method-detail p {
    margin-bottom: var(--space-xs);
}

.method-detail p:last-child {
    margin-bottom: 0;
}

.method-detail p strong {
    color: var(--accent);
}

/* ===== AUTHOR PROFILE ===== */

.author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.author-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--accent);
}

.author-meta h2 {
    color: #fff;
    margin-bottom: 4px;
}

.author-meta h2::after {
    display: none;
}

.author-title {
    color: var(--accent2);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== SUPPORT LIST (RESPONSIBLE GAMING) ===== */

.support-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.support-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.93rem;
}

.support-list li strong a {
    color: var(--accent2);
    font-size: 1rem;
}

/* ===== DESKTOP BREAKPOINTS ===== */

@media (min-width: 640px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }

    .colophon-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .topnav {
        display: block;
        position: static;
        background: none;
        border: none;
        padding: 0;
    }

    .topnav ul {
        flex-direction: row;
        gap: 0;
    }

    .topnav li a {
        padding: 0.5rem 0.85rem;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    .topnav li a:hover,
    .topnav li a.active {
        background: rgba(168, 85, 247, 0.15);
    }

    .author-profile {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 900px) {
    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contender {
        grid-template-columns: 44px 160px 200px 1fr auto;
        grid-template-rows: auto;
        align-items: center;
        padding: var(--space-md) var(--space-md) var(--space-md) 0;
        gap: var(--space-md);
    }

    .contender-rank {
        position: static;
    }

    .contender-rank span {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1rem;
    }

    .contender-brand {
        justify-content: center;
    }

    .contender-offer {
        text-align: left;
    }

    .contender-summary {
        text-align: left;
    }

    .contender-action {
        width: auto;
        white-space: nowrap;
        padding: 0.7rem 1.6rem;
        font-size: 0.92rem;
    }
}

@media (min-width: 1024px) {
    .contender {
        grid-template-columns: 50px 180px 220px 1fr auto;
    }
}