:root {
    --px-void: #08050f;
    --px-abyss: #0e0919;
    --px-slate: #160f28;
    --px-panel: #1d1536;
    --px-surface: #251c42;
    --px-iris: #a855f7;
    --px-orchid: #c084fc;
    --px-electric: #7c3aed;
    --px-neon: #d8b4fe;
    --px-flame: #f472b6;
    --px-mint: #34d399;
    --px-text: #ddd6f3;
    --px-dim: #8b7fad;
    --px-white: #f5f0ff;
    --px-glow: 0 0 40px rgba(168, 85, 247, 0.15);
    --px-glow-strong: 0 0 60px rgba(168, 85, 247, 0.3);
    --px-edge: rgba(168, 85, 247, 0.12);
    --px-r: 12px;
    --px-r-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--px-void);
    color: var(--px-text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--px-orchid); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--px-neon); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; }

/* ===================== LAYOUT ===================== */
.px-contain { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.px-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ===================== FLOATING NAV ===================== */
.px-nav {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(14, 9, 25, 0.8);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--px-edge);
    border-radius: 60px;
    padding: 8px 10px 8px 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 96vw;
    box-shadow: var(--px-glow);
}

.px-nav-brand {
    font-weight: 800;
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--px-iris), var(--px-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    white-space: nowrap;
}

.px-nav-links { display: flex; gap: 4px; align-items: center; }

.px-nav-links a {
    color: var(--px-dim);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 40px;
    transition: all 0.2s;
    white-space: nowrap;
}

.px-nav-links a:hover {
    color: var(--px-white);
    background: rgba(168, 85, 247, 0.08);
}

.px-nav-cta {
    background: linear-gradient(135deg, var(--px-iris), var(--px-electric)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: 40px !important;
    font-size: 0.82rem !important;
    box-shadow: 0 2px 16px rgba(124, 58, 237, 0.4);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.px-nav-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.6) !important;
    color: #fff !important;
}

.px-burger {
    display: none;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: relative;
}
.px-burger i {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--px-orchid);
    border-radius: 2px;
    position: absolute;
    left: 8px;
    transition: all 0.3s;
}
.px-burger i:nth-child(1) { top: 12px; }
.px-burger i:nth-child(2) { top: 18px; }
.px-burger i:nth-child(3) { top: 24px; }

/* ===================== DIAGONAL HERO ===================== */
.px-opening {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.px-opening::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(244, 114, 182, 0.08), transparent);
    pointer-events: none;
}

.px-opening::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--px-void);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.px-opening-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.px-opening-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--px-white);
    line-height: 1.12;
    margin-bottom: 20px;
}

.px-opening-text h1 span {
    display: block;
    background: linear-gradient(90deg, var(--px-iris), var(--px-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.px-opening-text p {
    font-size: 1.05rem;
    color: var(--px-dim);
    margin-bottom: 30px;
    max-width: 480px;
}

.px-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--px-iris), var(--px-electric));
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.45);
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}
.px-btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.6);
    color: #fff;
}

.px-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.06);
    color: var(--px-orchid);
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(168, 85, 247, 0.25);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}
.px-btn-ghost:hover {
    background: rgba(168, 85, 247, 0.12);
    border-color: var(--px-iris);
    color: var(--px-orchid);
}

.px-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero floating glass panels */
.px-glass-cluster {
    position: relative;
    height: 380px;
}

.px-glass-panel {
    position: absolute;
    background: rgba(22, 15, 40, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r-lg);
    padding: 22px 26px;
    box-shadow: var(--px-glow);
}

.px-glass-panel--a {
    top: 0;
    right: 0;
    width: 260px;
    animation: px-float-a 6s ease-in-out infinite;
}
.px-glass-panel--b {
    top: 80px;
    left: 10px;
    width: 220px;
    animation: px-float-b 7s ease-in-out infinite;
}
.px-glass-panel--c {
    bottom: 20px;
    right: 30px;
    width: 240px;
    animation: px-float-c 5s ease-in-out infinite;
}

.px-glass-stat {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--px-orchid), var(--px-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.px-glass-label {
    color: var(--px-dim);
    font-size: 0.82rem;
    margin-top: 2px;
}

@keyframes px-float-a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes px-float-b {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes px-float-c {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===================== SLANTED SECTIONS ===================== */
.px-slant {
    position: relative;
    padding: 90px 0;
}

.px-slant--up::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--px-abyss);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0 100%);
    z-index: -1;
}

.px-slant--down::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--px-void);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 1;
}

.px-bg-abyss { background: var(--px-abyss); }
.px-bg-void { background: var(--px-void); }

/* ===================== SECTION TITLES ===================== */
.px-heading {
    margin-bottom: 50px;
}

.px-heading h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: var(--px-white);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.px-heading h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--px-iris), transparent);
    border-radius: 3px;
    margin-top: 10px;
}

.px-heading p {
    color: var(--px-dim);
    max-width: 520px;
    font-size: 0.95rem;
}

.px-heading--center { text-align: center; }
.px-heading--center h2::after { margin-left: auto; margin-right: auto; }
.px-heading--center p { margin-left: auto; margin-right: auto; }

/* ===================== ZIGZAG CONTENT ===================== */
.px-zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.px-zigzag--reverse { direction: rtl; }
.px-zigzag--reverse > * { direction: ltr; }

.px-zigzag-content p { margin-bottom: 14px; }
.px-zigzag-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--px-white);
    margin-bottom: 16px;
}

.px-spec-panel {
    background: linear-gradient(145deg, var(--px-slate), var(--px-abyss));
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r-lg);
    overflow: hidden;
}

.px-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
    font-size: 0.9rem;
}
.px-spec-row:last-child { border-bottom: none; }
.px-spec-key { color: var(--px-dim); }
.px-spec-val { color: var(--px-white); font-weight: 600; text-align: right; }

/* ===================== BENTO GRID ===================== */
.px-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}

.px-bento-tile {
    background: linear-gradient(160deg, var(--px-panel), var(--px-slate));
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.px-bento-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--px-glow-strong);
}

.px-bento-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--px-iris), var(--px-flame), transparent);
}

.px-bento-tile--hero { grid-column: span 7; grid-row: span 2; }
.px-bento-tile--wide { grid-column: span 5; }
.px-bento-tile--square { grid-column: span 4; }
.px-bento-tile--rect { grid-column: span 8; }

.px-bento-tile h3 {
    font-size: 1.1rem;
    color: var(--px-white);
    margin-bottom: 6px;
}
.px-bento-tile p {
    color: var(--px-dim);
    font-size: 0.88rem;
}

.px-bento-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--px-orchid), var(--px-flame));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.px-bento-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

/* ===================== VERTICAL TIMELINE ===================== */
.px-timeline {
    position: relative;
    padding-left: 50px;
    max-width: 680px;
}

.px-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--px-iris), var(--px-flame), transparent);
}

.px-timeline-node {
    position: relative;
    margin-bottom: 40px;
    padding: 22px 28px;
    background: linear-gradient(160deg, var(--px-panel), var(--px-abyss));
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r);
    transition: transform 0.2s;
}

.px-timeline-node:hover { transform: translateX(6px); }

.px-timeline-node::before {
    content: attr(data-step);
    position: absolute;
    left: -50px;
    top: 22px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--px-iris), var(--px-electric));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    z-index: 2;
}

.px-timeline-node h3 {
    color: var(--px-white);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.px-timeline-node p {
    color: var(--px-dim);
    font-size: 0.9rem;
}

/* ===================== CHAT BUBBLE FAQ ===================== */
.px-chat {
    max-width: 700px;
    margin: 0 auto;
}

.px-chat-pair { margin-bottom: 20px; }

.px-chat-q {
    background: linear-gradient(135deg, var(--px-iris), var(--px-electric));
    color: #fff;
    padding: 14px 22px;
    border-radius: 20px 20px 6px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    max-width: 85%;
    margin-left: auto;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.15s;
    position: relative;
    user-select: none;
}
.px-chat-q:hover { transform: scale(1.01); }

.px-chat-q::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.5);
    transition: transform 0.3s;
}

.px-chat-pair.is-revealed .px-chat-q::after {
    transform: translateY(-50%) rotate(180deg);
}

.px-chat-a {
    background: var(--px-panel);
    border: 1px solid var(--px-edge);
    color: var(--px-dim);
    padding: 14px 22px;
    border-radius: 20px 20px 20px 6px;
    font-size: 0.88rem;
    max-width: 88%;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s, padding 0s;
    padding-top: 0;
    padding-bottom: 0;
}

.px-chat-pair.is-revealed .px-chat-a {
    max-height: 400px;
    opacity: 1;
    padding: 14px 22px;
}

/* ===================== RADAR RATING ===================== */
.px-radar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(160deg, var(--px-panel), var(--px-abyss));
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r-lg);
    padding: 40px;
    max-width: 860px;
    margin: 0 auto;
}

.px-score-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(var(--px-iris) 0deg, var(--px-flame) 180deg, var(--px-edge) 338deg, var(--px-edge) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.px-score-ring-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--px-panel);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.px-score-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--px-white);
}

.px-score-of {
    font-size: 0.75rem;
    color: var(--px-dim);
}

.px-radar-bars { display: flex; flex-direction: column; gap: 12px; }

.px-bar-row {
    display: grid;
    grid-template-columns: 120px 1fr 40px;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
}

.px-bar-label { color: var(--px-dim); }
.px-bar-track {
    height: 6px;
    background: var(--px-abyss);
    border-radius: 3px;
    overflow: hidden;
}

.px-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--px-iris), var(--px-flame));
    transition: width 1s ease;
}

.px-bar-val { color: var(--px-white); font-weight: 700; text-align: right; }

/* ===================== MARQUEE PAYMENTS ===================== */
.px-marquee-wrap {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.px-marquee-wrap::before,
.px-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}
.px-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--px-void), transparent);
}
.px-marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--px-void), transparent);
}

.px-marquee-track {
    display: flex;
    gap: 20px;
    animation: px-scroll 30s linear infinite;
    width: max-content;
}

.px-marquee-item {
    background: var(--px-slate);
    border: 1px solid var(--px-edge);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--px-text);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes px-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== PROS / CONS SPLIT ===================== */
.px-split-verdict {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.px-split-col {
    padding: 24px;
    border-radius: var(--px-r);
}

.px-split-col--plus {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.px-split-col--minus {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.15);
}

.px-split-col h3 {
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.px-split-col ul { list-style: none; padding: 0; }
.px-split-col ul li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--px-dim);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.px-split-col ul li::before {
    flex-shrink: 0;
    font-weight: 800;
    font-size: 0.82rem;
    margin-top: 3px;
}
.px-split-col--plus ul li::before { content: '\2713'; color: var(--px-mint); }
.px-split-col--minus ul li::before { content: '\2717'; color: var(--px-flame); }

/* ===================== DATA TABLE ===================== */
.px-table-wrap {
    overflow-x: auto;
    border-radius: var(--px-r);
    border: 1px solid var(--px-edge);
    margin: 24px 0;
}

.px-table {
    width: 100%;
    border-collapse: collapse;
}

.px-table th,
.px-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.px-table th {
    background: var(--px-slate);
    color: var(--px-orchid);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.px-table td { color: var(--px-text); }
.px-table tbody tr:hover td { background: rgba(168, 85, 247, 0.03); }

/* ===================== GAME SCROLL ===================== */
.px-scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--px-iris) var(--px-abyss);
}

.px-scroll-row::-webkit-scrollbar { height: 4px; }
.px-scroll-row::-webkit-scrollbar-track { background: var(--px-abyss); border-radius: 2px; }
.px-scroll-row::-webkit-scrollbar-thumb { background: var(--px-iris); border-radius: 2px; }

.px-game-card {
    flex: 0 0 190px;
    scroll-snap-align: start;
    background: var(--px-panel);
    border: 1px solid var(--px-edge);
    border-radius: var(--px-r);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.px-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--px-glow);
}

.px-game-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--px-slate), var(--px-surface));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
}

.px-game-name {
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--px-text);
    text-align: center;
}

/* ===================== CATEGORY CHIPS ===================== */
.px-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.px-chip {
    background: var(--px-slate);
    border: 1px solid var(--px-edge);
    color: var(--px-dim);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.px-chip:hover,
.px-chip.is-on {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--px-iris);
    color: var(--px-orchid);
}

/* ===================== FOOTER ===================== */
.px-footer {
    position: relative;
    background: var(--px-abyss);
    padding: 60px 0 28px;
    margin-top: 60px;
}

.px-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--px-iris), var(--px-flame), transparent);
}

.px-footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.px-footer-about p {
    color: var(--px-dim);
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.7;
}

.px-footer-col h4 {
    color: var(--px-white);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.px-footer-col ul { list-style: none; padding: 0; }
.px-footer-col ul li { margin-bottom: 9px; }
.px-footer-col ul li a {
    color: var(--px-dim);
    font-size: 0.84rem;
    transition: color 0.2s;
}
.px-footer-col ul li a:hover { color: var(--px-orchid); }

.px-footer-end {
    border-top: 1px solid var(--px-edge);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.px-footer-copy { color: var(--px-dim); font-size: 0.78rem; }

.px-footer-warn {
    color: var(--px-dim);
    font-size: 0.75rem;
    max-width: 480px;
    text-align: right;
}

.px-badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--px-flame);
    color: var(--px-flame);
    font-size: 0.72rem;
    font-weight: 800;
    margin-left: 8px;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.px-page-hero {
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}

.px-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(124, 58, 237, 0.1), transparent);
    pointer-events: none;
}

.px-page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--px-void);
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}

.px-page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--px-white);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.px-page-hero p {
    color: var(--px-dim);
    font-size: 1rem;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.px-crumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    position: relative;
    z-index: 2;
}

.px-crumbs a { color: var(--px-dim); }
.px-crumbs a:hover { color: var(--px-orchid); }
.px-crumbs span { color: var(--px-dim); opacity: 0.4; }

/* ===================== ARTICLE PROSE ===================== */
.px-prose { max-width: 760px; margin: 0 auto; }
.px-prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--px-white);
    margin: 40px 0 14px;
    padding-left: 16px;
    border-left: 3px solid var(--px-iris);
}

.px-prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--px-white);
    margin: 28px 0 10px;
}

.px-prose p { margin-bottom: 14px; }

.px-prose ul, .px-prose ol {
    margin-bottom: 16px;
    color: var(--px-dim);
}
.px-prose ul li, .px-prose ol li { margin-bottom: 6px; }

.px-callout {
    background: rgba(168, 85, 247, 0.06);
    border-left: 3px solid var(--px-iris);
    padding: 18px 22px;
    border-radius: 0 var(--px-r) var(--px-r) 0;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--px-dim);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .px-nav { border-radius: 16px; padding: 10px 16px; top: 10px; }
    .px-nav-links { display: none; }
    .px-nav-links.is-shown {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: rgba(14, 9, 25, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--px-edge);
        border-radius: 16px;
        padding: 14px;
        min-width: 200px;
        gap: 4px;
        box-shadow: var(--px-glow);
    }
    .px-burger { display: block; }

    .px-opening-layout { grid-template-columns: 1fr; text-align: center; }
    .px-opening-text p { margin-left: auto; margin-right: auto; }
    .px-actions { justify-content: center; }
    .px-glass-cluster { height: 220px; margin-top: 30px; }
    .px-glass-panel--a { width: 180px; right: 10%; }
    .px-glass-panel--b { width: 160px; left: 5%; top: 40px; }
    .px-glass-panel--c { display: none; }

    .px-zigzag { grid-template-columns: 1fr; }
    .px-zigzag--reverse { direction: ltr; }

    .px-bento { grid-template-columns: 1fr 1fr; }
    .px-bento-tile--hero,
    .px-bento-tile--wide,
    .px-bento-tile--square,
    .px-bento-tile--rect { grid-column: span 2; }

    .px-radar { grid-template-columns: 1fr; justify-items: center; }
    .px-split-verdict { grid-template-columns: 1fr; }
    .px-footer-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .px-bento-tile--hero,
    .px-bento-tile--wide,
    .px-bento-tile--square,
    .px-bento-tile--rect { grid-column: span 2; }

    .px-footer-layout { grid-template-columns: 1fr; }
    .px-bar-row { grid-template-columns: 80px 1fr 32px; }
    .px-timeline { padding-left: 40px; }
    .px-timeline-node::before { left: -40px; width: 30px; height: 30px; font-size: 0.75rem; }
    .px-slant { padding: 60px 0; }
    .px-opening { padding: 100px 0 80px; }
}
