

:root {
    --bg-primary: #0A0E1F;
    --bg-card: #111632;
    --bg-sub: #161D40;
    --bg-footer: #06091A;
    --accent-gold: #FBBF24;
    --accent-gold-bright: #FCD34D;
    --accent-blue: #60A5FA;
    --accent-storm: #7C3AED;
    --marble: #E7EBFF;
    --text-primary: #E7EBFF;
    --text-secondary: #8A93B8;
    --border: #232A55;
    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Rubik', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --shadow-thunder: 0 0 28px rgba(251, 191, 36, 0.35);
    --header-h: 74px;
    --caz-stack: 1rem;
}

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

html {
    scroll-behavior: smooth;
}


h2[id],
h3[id],
section[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    h2[id],
    h3[id],
    section[id] {
        scroll-margin-top: 82px;
    }
}

body {
    margin: 0;
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent-gold-bright);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--accent-gold);
}



ul, ol {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--caz-stack);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
    color: var(--text-primary);
    margin: 0 0 var(--caz-stack);
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.375rem;
    line-height: 1.35;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}

p {
    margin: 0 0 var(--caz-stack);
    line-height: 1.6;
}

li {
    font-size: 1rem;
    line-height: 1.6;
}


.nav-list,
.nav-drawer-list ul,
.scroll-list,
.footer-col ul {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
    border: 0;
    white-space: nowrap;
    text-decoration: none;
}

a.btn:hover,
a.btn:focus {
    text-decoration: none;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-thunder);
}

.btn-primary:hover {
    background: var(--accent-gold-bright);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold-bright);
    border: 1.5px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.10);
    color: var(--accent-gold-bright);
}

.btn-block {
    width: 100%;
}



.header {
    position: sticky;
    top: 0;
    z-index: 90;
    height: var(--header-h);
    background: rgba(10, 14, 31, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-inner .logo {
    margin-right: auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.logo-z {
    display: inline-flex;
    align-items: center;
    margin: 0 1px;
    line-height: 0;
}

.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-item a {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

.nav-item a:hover {
    color: var(--accent-gold-bright);
}

.nav-item.is-active a {
    color: var(--accent-gold);
}

.nav-item.is-active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.header-cta {
    display: none;
    gap: 10px;
}

.burger {
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .burger {
        display: none;
    }

    
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 16px;
    }

    .header-inner .logo {
        margin-right: 0;
        justify-self: start;
    }

    .nav-desktop {
        display: block;
        justify-self: center;
    }

    .header-cta {
        display: inline-flex;
        justify-self: end;
    }
}



.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 31, 0.7);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 110;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
}

.nav-drawer.is-open {
    transform: translateX(0);
}

.nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    background: transparent;
    color: var(--text-primary);
    border: 0;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
}

.drawer-close:hover {
    background: rgba(251, 191, 36, 0.10);
    color: var(--accent-gold);
}

.nav-drawer-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.nav-drawer-list a {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 20px;
    font-family: var(--font-h);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.nav-drawer-list a:hover {
    color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.06);
}

.nav-drawer-cta {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}



.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 48px;
    background:
        radial-gradient(50% 70% at 50% 0%, rgba(124, 58, 237, 0.16) 0%, transparent 55%),
        linear-gradient(180deg, #0A0E1F 0%, #111632 100%);
}

.hero-bolt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.hero-column {
    display: none;
    position: absolute;
    top: 80px;
    height: 400px;
    width: 80px;
    opacity: 0.08;
}

.hero-column-left { left: 24px; }
.hero-column-right { right: 24px; }

.hero-inner {
    position: relative;
    text-align: center;
}

.pre-title {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    color: var(--marble);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title-sm {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    margin-bottom: 0;
}

.hero-lead {
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 16px;
}

.hero-bonus {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin: 12px 0 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-bonus .amount {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--accent-gold);
    text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

.hero-bonus .spins {
    font-family: var(--font-b);
    font-weight: 500;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--marble);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 20px;
    color: var(--accent-gold-bright);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    background: rgba(251, 191, 36, 0.04);
}

.laurel {
    display: inline-flex;
    line-height: 0;
}

.disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.hero-compact {
    padding: 56px 0 40px;
}

.hero-compact .hero-title {
    text-align: left;
    margin-bottom: 0;
}

.hero-compact .hero-lead {
    margin: 0 0 28px;
}

.breadcrumbs {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
}

.breadcrumbs a {
    color: var(--accent-gold-bright);
}

.breadcrumbs span {
    margin: 0 6px;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .hero {
        padding: 88px 0 72px;
    }
    .hero-column {
        display: block;
    }
}



.pillar-strip {
    padding: 32px 0;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: var(--text-primary);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pillar:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pillar-title {
    font-family: var(--font-h);
    font-weight: 600;
    color: var(--accent-gold-bright);
    font-size: 17px;
}

.pillar-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.pillar-arrow {
    color: var(--accent-gold);
    font-size: 22px;
    line-height: 1;
}

@media (min-width: 768px) {
    .pillars {
        grid-template-columns: 1fr 1fr;
    }
    .pillars .pillar:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .pillars {
        grid-template-columns: repeat(3, 1fr);
    }
    .pillars .pillar:last-child {
        grid-column: auto;
    }
}



.scroll-content {
    padding: 32px 0;
}

.scroll {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}

.scroll-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--accent-gold);
    margin: 4px 0 20px;
}

.scroll-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.scroll-divider .diamond {
    font-size: 10px;
    opacity: 0.8;
}

.scroll-divider:last-child {
    margin: 20px 0 4px;
}

.scroll-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--accent-gold-bright);
    border: 0;
    padding: 4px 0 16px;
    cursor: pointer;
    font-family: var(--font-h);
    font-size: 18px;
    letter-spacing: 0.08em;
}

.scroll-header .toggle {
    transition: transform .25s ease;
    color: var(--accent-gold);
}

.scroll[data-toc].is-collapsed .scroll-header .toggle {
    transform: rotate(-90deg);
}

.scroll[data-toc].is-collapsed .scroll-list {
    display: none;
}

.scroll-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: none;
}

.scroll-list a {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: var(--text-primary);
    padding: 6px 0;
}

.scroll-list a:hover {
    color: var(--accent-gold-bright);
}

.scroll-list .roman {
    font-family: var(--font-h);
    color: var(--accent-gold);
    min-width: 28px;
}

@media (min-width: 768px) {
    .scroll {
        padding: 32px;
    }
    .scroll-list {
        grid-template-columns: 1fr 1fr;
    }
}



.section-title {
    color: var(--marble);
}

.section-lead {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 720px;
}


.section {
    padding: 32px 0 48px;
}

.text-block {
    padding: 40px 0;
}

.text-block.page-inner-single {
    padding: 32px 0 48px;
}

.text-block.page-inner-single > .temple,
.text-block.page-inner-single > .oracle-faq,
.text-block.page-inner-single > .oracle-voices,
.text-block.page-inner-single > .pillar-strip,
.text-block.page-inner-single > .rating-stele {
    padding-top: 0;
    padding-bottom: 0;
}

.page-inner-chunk + .page-inner-chunk {
    margin-top: 2rem;
}


.text-block h2,
.container.narrow h2 {
    margin-top: 2.5rem;
}

.text-block h3,
.container.narrow h3 {
    margin-top: 1.75rem;
}

.text-block .container > :first-child,
.container.narrow > :first-child {
    margin-top: 0;
}

.text-block figure {
    display: block;
    max-width: min(750px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.text-block ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.text-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    clip-path: polygon(65% 0, 0 55%, 45% 55%, 35% 100%, 100% 45%, 55% 45%);
}



.prose {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.prose > :first-child {
    margin-top: 0;
}

.prose h2 {
    margin-top: 2.5rem;
}

.prose h3 {
    margin-top: 1.75rem;
}

.prose p {
    margin: 0 0 var(--caz-stack);
}

.prose ul,
.prose ol {
    margin: 0 0 var(--caz-stack);
    padding-left: 1.5em;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.prose li:last-child {
    margin-bottom: 0;
}

.prose a {
    color: var(--accent-gold-bright);
    text-decoration: underline;
}

.prose a:hover {
    text-decoration: none;
}


.prose a.btn {
    text-decoration: none;
}

.prose a.btn-primary,
.prose a.btn-primary:hover,
.prose a.btn-primary:focus {
    color: var(--bg-primary);
    text-decoration: none;
}

.prose a.btn-secondary,
.prose a.btn-secondary:hover,
.prose a.btn-secondary:focus {
    text-decoration: none;
}

.prose img {
    max-width: min(750px, 100%);
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}


.prose .cz-author-page-portrait.cz-author__img-wrap {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 0 var(--caz-stack);
}
.prose .cz-author-page-portrait .cz-author__img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center 20%;
}

.prose figure {
    margin: 1.5rem auto;
    max-width: min(750px, 100%);
}

.prose figcaption {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.prose blockquote {
    margin: 0 0 var(--caz-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--accent-gold);
    background: rgba(251, 191, 36, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-primary);
}

.prose blockquote > :last-child {
    margin-bottom: 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.prose th,
.prose td {
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.prose th {
    background: var(--bg-sub);
    font-weight: 600;
    color: var(--marble);
}

.prose tbody tr:nth-child(even) td {
    background: rgba(22, 29, 64, 0.4);
}

@media (max-width: 640px) {
    .prose {
        font-size: 0.95rem;
    }
    .prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}




.section-toc {
    padding-top: 48px;
}

.toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-gold);
    border-radius: 12px;
    padding: 22px 24px;
    margin: 0 0 24px;
}

.toc summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 0;
}

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

.toc summary::after {
    content: "\25BE";
    color: var(--accent-gold);
    font-size: 0.9em;
    transition: transform .2s ease;
}

.toc[open] summary::after {
    transform: rotate(180deg);
}

.toc[open] .toc-list {
    margin-top: 12px;
}

.toc-title {
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.toc-list {
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.toc-list li {
    counter-increment: toc;
    position: relative;
    padding-left: 32px;
}

.toc-list li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}

.toc-list a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.toc-list a:hover,
.toc-list a:focus {
    color: var(--accent-gold-bright);
    border-bottom-color: var(--accent-gold);
}

@media (min-width: 720px) {
    .toc-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 24px;
    }
}

@media (max-width: 480px) {
    .toc {
        padding: 18px 20px;
    }
    .toc-title {
        font-size: 1rem;
    }
}



.temple {
    padding: 40px 0;
}

.temple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.temple-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.temple-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 18px 38px rgba(251, 191, 36, 0.12);
}

.temple-card .image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent-storm) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(10, 14, 31, 0.6);
    font-family: var(--font-h);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 14px;
}

.temple-card .body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    height: 100px;
}

.temple-card .title {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 17px;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.temple-card .studio {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
}

.temple-card .play-demo {
    color: var(--accent-gold-bright);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .temple-grid { grid-template-columns: 1fr 1fr; }
}

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



.rating-stele {
    padding: 40px 0;
}

.stele {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-sub) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.stele-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.stele .rank {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 6rem);
    color: var(--accent-gold);
    line-height: 0.9;
    text-shadow: 0 0 24px rgba(251, 191, 36, 0.3);
}

.stele .logo-placeholder {
    width: 160px;
    height: 60px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stele-center .brand {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 10px;
}

.stele .stars {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 10px;
}

.stele .bonus {
    font-family: var(--font-h);
    font-size: 22px;
    color: var(--accent-gold);
    margin: 0;
    font-weight: 700;
}

.stele-right .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 20px;
}

.stele-right .features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

@media (min-width: 768px) {
    .stele {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .stele {
        grid-template-columns: 30% 40% 30%;
        gap: 32px;
    }
}



.oracle-voices {
    padding: 40px 0;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.voice {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oracle-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: var(--font-h);
}

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

.voice .stars {
    display: inline-flex;
    gap: 2px;
}

.voice .quote {
    margin: 0;
    font-style: italic;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.voice-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.voice .avatar {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-storm) 0%, #4C1D95 100%);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 700;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.voice .meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.voice .name {
    color: var(--text-primary);
    font-weight: 500;
}

.voice .country {
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.08em;
}

@media (min-width: 768px) {
    .voices-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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



.oracle-faq {
    padding: 40px 0 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: border-color .2s ease, background .2s ease;
}

.faq-row.is-open {
    border-color: var(--accent-gold);
    background: var(--bg-sub);
}

.faq-row.is-open::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.faq-row .question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 18px 20px;
    color: var(--text-primary);
    font-family: var(--font-b);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.faq-row .bolt {
    line-height: 0;
    display: inline-flex;
    flex-shrink: 0;
}

.faq-row .q-text {
    flex: 1;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
}

.faq-row .chevron {
    color: var(--accent-gold);
    line-height: 0;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.faq-row.is-open .chevron {
    transform: rotate(180deg);
}

.faq-row .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-row .answer > div {
    padding: 0 20px 18px 52px;
    color: var(--text-secondary);
    font-size: 15px;
}

.faq-row.is-open .answer {
    max-height: 400px;
}



.section-404 {
    padding: 80px 0 100px;
    min-height: 60vh;
}

.page-404 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.big-bolt {
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
}

.title-404 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(5rem, 14vw, 9rem);
    color: var(--accent-gold);
    margin: 0;
    line-height: 1;
}

.subtitle-404 {
    max-width: 520px;
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 0 12px;
}



.footer {
    background: var(--bg-footer);
    padding: 48px 0 28px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 12px 0 16px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-socials .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(17, 22, 50, 0.85);
    color: var(--text-secondary);
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.footer-socials .social svg {
    width: 20px;
    height: 20px;
    max-width: none;
    flex-shrink: 0;
    display: block;
}

.footer-socials .social:hover {
    color: var(--accent-gold-bright);
    border-color: rgba(251, 191, 36, 0.65);
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.15);
    transform: translateY(-2px);
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.footer-col h3 {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold-bright);
    margin: 0 0 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--accent-gold-bright);
}

.trust-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(124, 58, 237, 0.14);
    border: 1px solid rgba(124, 58, 237, 0.32);
    color: #A78BFA;
    font-size: 12px;
    letter-spacing: 0.06em;
    border-radius: 6px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border) 0%, var(--accent-gold) 50%, var(--border) 100%);
    margin: 8px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.copyright {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
        gap: 48px;
    }
    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}


.cz-author-strip {
    margin: 0;
    padding: 28px 0 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-footer) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cz-author-strip + .footer {
    margin-top: 0;
    padding-top: 32px;
    border-top: none;
}

.cz-author {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.cz-author > a:first-of-type {
    flex-shrink: 0;
}

.cz-author__right {
    flex: 1;
    min-width: 0;
}

.cz-author__img-wrap {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    background: var(--bg-card);
}

.cz-author__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cz-author__kicker {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold-bright);
    margin: 0 0 6px;
}

.cz-author__name {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.cz-author__name a {
    color: var(--text-primary);
}

.cz-author__name a:hover {
    color: var(--accent-gold-bright);
}

.cz-author__bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 12px;
}

.cz-author__more {
    display: inline-block;
    font-family: var(--font-b);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold-bright);
    margin-top: 4px;
}

.cz-author__more:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

@media (max-width: 560px) {
    .cz-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cz-author__right {
        text-align: center;
    }
}



.rating-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.rating-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: var(--bg-card);
    min-width: 480px;
}

.rating-table thead tr {
    background: var(--bg-sub);
    border-bottom: 2px solid var(--accent-gold);
}

.rating-table th {
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold-bright);
    white-space: nowrap;
}

.rating-table td {
    padding: 12px 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

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

.rating-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.04);
}

.rating-table .total-row {
    background: rgba(251, 191, 36, 0.07);
    border-top: 1px solid rgba(251, 191, 36, 0.3);
}

.score {
    display: inline-block;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.score-high {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-gold-bright);
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.score-mid {
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(96, 165, 250, 0.3);
}



.content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.content-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.content-list.content-list--ordered {
    counter-reset: step-counter;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: var(--accent-gold-bright);
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
}



.cta-block {
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #111632 0%, #161D40 100%);
    border: 1.5px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.08), inset 0 1px 0 rgba(251, 191, 36, 0.08);
    overflow: hidden;
    position: relative;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.cta-block-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 36px 28px;
}

.cta-block-icon svg {
    display: block;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.5));
}

.cta-block-headline {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.2;
}

.cta-block-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.cta-block-sub a {
    color: var(--accent-gold-bright);
}

@media (min-width: 768px) {
    .cta-block-inner {
        flex-direction: row;
        text-align: left;
        gap: 28px;
        padding: 32px 36px;
    }

    .cta-block-text {
        flex: 1;
    }

    .cta-block-btn {
        flex-shrink: 0;
    }
}



.cta-strip {
    background: linear-gradient(135deg, var(--accent-storm) 0%, #4C1D95 50%, #1E0A45 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M35 5 L10 35 H27.5 L22.5 55 L50 25 H32.5 L40 5 Z' fill='rgba(251,191,36,0.03)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.cta-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.cta-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cta-strip-headline {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.cta-strip-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (min-width: 768px) {
    .cta-strip-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 32px;
    }

    .cta-strip-text {
        flex: 1;
    }
}



.content-img {
    display: block;
    margin: 2rem auto;
    max-width: min(750px, 100%);
    border-radius: var(--radius);
    overflow: hidden;
}

.content-img img {
    display: block;
    width: 100%;
    max-width: min(750px, 100%);
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.img-placeholder,
.hero-img-placeholder {
    background: linear-gradient(135deg, var(--bg-sub) 0%, var(--bg-card) 100%);
    border: 1px dashed rgba(251, 191, 36, 0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
    font-style: italic;
    padding: 24px;
    text-align: center;
    min-height: 120px;
}

.content-img--wide .img-placeholder {
    min-height: 160px;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}
.footer-brand p {
    margin: 0;
    color: #8A93B8;
    font-size: 14px;
    line-height: 1.6;
}
.trust-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.trust-list li { margin: 0; }
.content-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
    min-height: 220px;
    padding: 16px;
    background: linear-gradient(135deg, #111632 0%, #161D40 100%);
    border: 1px solid #232A55;
    border-radius: 12px;
    color: #8A93B8;
    text-align: center;
}
.content-img-placeholder span {
    font-size: 13px;
    line-height: 1.55;
    max-width: 520px;
}
