/* Plain CSS, custom properties — no framework (CLAUDE.md Section 2).
   Kept small so it isn't render-blocking; performance is a ranking factor. */
:root {
    /* Luxe casino theme: deep black, warm off-white, gold accents. */
    --bg: #08080b;
    --surface: #15131b;
    --surface-2: #1f1c28;
    --text: #f4efe4;
    --muted: #a99f8d;
    --gold: #d4af37;
    --gold-light: #f6df93;
    --gold-deep: #9a7b27;
    --brand: var(--gold);
    --brand-ink: #1b1404;
    --warn: #f4c95d;
    --warn-ink: #2e2300;
    --border: #2a2733;
    --gold-border: rgba(212, 175, 55, 0.28);
    --radius: 12px;
    --shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
    --glow: 0 0 22px rgba(212, 175, 55, 0.18);
    --wrap: 64rem;
    --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    /* High-contrast serif for a luxury feel — system fonts only, no web-font cost. */
    --display:
        'Didot', 'Bodoni MT', 'Playfair Display', 'Hoefler Text', Georgia, 'Times New Roman', serif;
}

* {
    box-sizing: border-box;
}
html.age-locked {
    overflow: hidden;
}
body {
    margin: 0;
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text);
    /* Subtle felt-like glow from the top, over deep black. */
    background:
        radial-gradient(1100px 520px at 50% -8%, #241f16 0%, rgba(36, 31, 22, 0) 62%),
        radial-gradient(
            900px 600px at 100% 0%,
            rgba(212, 175, 55, 0.06) 0%,
            rgba(212, 175, 55, 0) 55%
        ),
        var(--bg);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 1rem;
}
a {
    color: var(--gold);
    text-underline-offset: 2px;
}
a:hover {
    color: var(--gold-light);
}
h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 700;
}
h1 {
    font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);
    color: var(--gold-light);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
h2 {
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
}
img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: var(--brand);
    color: var(--brand-ink);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    z-index: 50;
}

/* Header / nav */
.site-header {
    border-bottom: 1px solid var(--gold-border);
    background: linear-gradient(180deg, #141119, #0b0a0f);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.12);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.9rem;
}
.brand {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold-light);
    -webkit-text-fill-color: transparent;
}
.brand::before {
    content: '\2666';
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
    margin-right: 0.4rem;
    font-size: 0.8em;
    vertical-align: middle;
}
.nav ul {
    display: flex;
    gap: 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.nav a[aria-current='page'],
.nav a:hover {
    color: var(--gold-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition:
        transform 0.15s ease,
        filter 0.15s ease,
        box-shadow 0.15s ease;
}
.btn--primary {
    background: linear-gradient(
        180deg,
        var(--gold-light) 0%,
        var(--gold) 55%,
        var(--gold-deep) 100%
    );
    color: var(--brand-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 6px 18px rgba(212, 175, 55, 0.22);
}
.btn--primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 10px 26px rgba(212, 175, 55, 0.34);
}
.btn--ghost {
    background: transparent;
    border-color: var(--gold-border);
    color: var(--gold-light);
}
.btn--ghost:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
}
.btn--sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
}
.btn:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

/* Disclosure / notices */
.disclosure-slot {
    padding-top: 1rem;
}
.affiliate-disclosure {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}
.notice {
    border-radius: var(--radius);
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
}
.notice--stale,
.badge--stale {
    background: var(--warn);
    color: var(--warn-ink);
}
.badge {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Operator "offer" card — square logo | details | bonus + CTA */
.op-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr 13rem;
    gap: 1.25rem;
    align-items: center;
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-block: 1rem;
    box-shadow: var(--shadow);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}
.op-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.55;
}
.op-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow), var(--glow);
    transform: translateY(-2px);
}

/* Square logo / monogram placeholder */
.op-card__logo-wrap {
    flex: none;
}
.op-card__logo {
    display: block;
    width: 112px;
    height: 112px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px solid var(--gold-border);
    background: #0c0b12;
    object-fit: contain;
    padding: 8px;
}
.op-card__logo--placeholder {
    position: relative;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #231d30, #0c0b12);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}
.op-card__monogram {
    font-family: var(--display);
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold-light);
    -webkit-text-fill-color: transparent;
}
.op-card__logo-note {
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Details column */
.op-card__main {
    min-width: 0;
}
.op-card__name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.op-card__name {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.op-card__name a {
    text-decoration: none;
    color: var(--text);
}
.op-card__name a:hover {
    color: var(--gold-light);
}
.op-card__rating {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 700;
}
.op-card__stars {
    color: var(--gold);
    letter-spacing: 0.1em;
}
.op-card__rating b {
    color: var(--gold-light);
}
.op-card__rating small {
    color: var(--muted);
    font-weight: 400;
}
.op-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
}
.op-card__features li {
    font-size: 0.75rem;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    background: rgba(212, 175, 55, 0.06);
    border-radius: 99px;
    padding: 0.2rem 0.65rem;
}
.op-card__license {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--muted);
    background: var(--surface-2);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    margin: 0.6rem 0 0;
}
.op-card__lic-label {
    font-weight: 700;
    color: var(--text);
}
.op-card__updated {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0.4rem 0 0;
}
.op-card .notice--stale {
    margin: 0.5rem 0 0;
}

/* Bonus + CTA column */
.op-card__offer {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: center;
    min-width: 11.5rem;
}
.op-card__bonus {
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.06);
    padding: 0.65rem 0.75rem;
}
.op-card__bonus-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.op-card__bonus-amount {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold-light);
    line-height: 1.2;
}
.op-card__spins {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    margin-top: 0.2rem;
}
.op-card__cta {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
.op-card__readmore {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}
.op-card__readmore:hover {
    color: var(--gold-light);
}

@media (max-width: 46rem) {
    .op-card {
        grid-template-columns: auto 1fr;
    }
    .op-card__offer {
        grid-column: 1 / -1;
    }
}
@media (max-width: 30rem) {
    .op-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .op-card__logo {
        margin-inline: auto;
    }
    .op-card__features {
        justify-content: center;
    }
}

/* Compare table */
.table-wrap {
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-block: 1rem;
}
.compare-table th,
.compare-table td {
    text-align: left;
    padding: 0.7rem 0.6rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.compare-table thead th {
    color: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom-color: var(--gold-border);
}
.compare-table tbody tr {
    transition: background 0.15s ease;
}
.compare-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}
.compare-table a {
    text-decoration: none;
}

/* Age gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 12, 0.92);
    display: none;
    place-items: center;
    z-index: 100;
    padding: 1rem;
}
.age-gate:not([hidden]) {
    display: grid;
} /* an element-level display must not override the hidden attribute */
.age-gate__box {
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    max-width: 28rem;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow), var(--glow);
}
.age-gate__title {
    margin-top: 0;
    color: var(--gold-light);
}
.age-gate__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* RG bar */
.rg-bar {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, #1a1722, #100e16);
    border-top: 1px solid var(--gold-border);
    backdrop-filter: blur(2px);
}
.rg-bar__msg {
    margin: 0;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}
.rg-bar__msg strong {
    color: var(--gold-light);
}
.rg-bar__todo {
    color: var(--warn);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--gold-border);
    background: linear-gradient(180deg, #100e16, #0a090e);
    margin-top: 2.5rem;
    padding-block: 2rem;
}
.site-footer__age strong {
    color: var(--gold-light);
}
.site-footer__age {
    font-weight: 600;
}
.site-footer__nav {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}
.site-footer__legal {
    font-size: 0.85rem;
    color: var(--muted);
}
/* Footer link columns */
.site-footer__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 1.5rem 2rem;
    margin: 2rem 0 1.75rem;
}
.footer-col__h {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-col a:hover {
    color: var(--gold-light);
}

/* Pagination */
.pagination-summary {
    color: var(--muted);
    font-size: 0.9rem;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-block: 2rem;
}
.pagination__list {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination__step,
.pagination__num {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}
.pagination__num.is-current {
    background: var(--brand);
    color: var(--brand-ink);
    border-color: var(--brand);
}
.pagination__step.is-disabled {
    color: var(--muted);
    opacity: 0.5;
}
.pagination a.pagination__step:hover,
.pagination a.pagination__num:hover {
    border-color: var(--brand);
}

/* FAQ accordion (native <details>, no JS) */
.faq {
    margin-block: 2.5rem;
}
.faq__heading {
    margin-bottom: 1rem;
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.faq__item {
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.faq__item[open] {
    border-color: var(--gold);
    box-shadow: var(--glow);
}
.faq__item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}
.faq__q::-webkit-details-marker {
    display: none;
} /* hide default disclosure triangle */
.faq__q:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: var(--radius);
}
.faq__q-text {
    flex: 1;
}

/* Chevron drawn from borders; rotates when the item is open */
.faq__icon {
    flex: none;
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.2rem;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.faq__item[open] .faq__icon {
    transform: rotate(225deg);
}
.faq__item[open] .faq__q {
    color: var(--brand);
}

.faq__a {
    padding: 0 1.1rem 1.1rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
    .faq__icon,
    .faq__item {
        transition: none;
    }
}

/* ===== Immersive casino-review page ===== */
.creview {
    --accent: var(--gold);
    --accent-ink: var(--brand-ink);
}

/* Branded header — fixed glass bar over the full-height hero, stays on scroll */
.creview-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(10, 9, 14, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-border);
}
/* Offset in-page anchors so they aren't hidden under the fixed header + sticky TOC */
.creview [id] {
    scroll-margin-top: 8.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.5rem 0 1.4rem;
    line-height: 1.5;
}
.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--gold-light);
}
.breadcrumbs [aria-current='page'] {
    color: var(--text);
}

/* Sticky table of contents (pins to top while the content is in view) */
.toc {
    position: sticky;
    top: 4.25rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0 2rem;
    padding: 0.6rem 0.9rem;
    background: rgba(10, 9, 14, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: auto;
}
.toc__label {
    flex: none;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.toc__list {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.toc__list a {
    display: inline-block;
    white-space: nowrap;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition:
        color 0.15s ease,
        background 0.15s ease;
}
.toc__list a:hover {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
}

/* Dynamic "In this review" contents box (built from the review's headings) */
.review-toc {
    max-width: 52rem;
    margin: 0.5rem auto 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface-2);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
}
.review-toc__title {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    font-weight: 700;
}
.review-toc__list {
    margin: 0;
    padding-left: 1.2rem;
}
.review-toc__item {
    margin: 0.25rem 0;
}
.review-toc__item--h3 {
    margin-left: 1rem;
    list-style: circle;
    font-size: 0.92em;
}
.review-toc__list a {
    color: var(--muted);
    text-decoration: none;
}
.review-toc__list a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Author byline + "about the author" box (E-E-A-T trust signals) */
.byline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}
.byline__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    flex: none;
}
.byline strong {
    color: var(--text);
}
.byline__sep {
    opacity: 0.5;
}
.author-bio {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    max-width: 52rem;
    margin: 2rem auto 0;
    padding: 1.4rem;
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.author-bio__avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    flex: none;
    border: 2px solid var(--gold-border);
    background: #0c0b12;
}
.author-bio__body {
    min-width: 0;
}
.author-bio__kicker {
    margin: 0;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}
.author-bio__name {
    margin: 0.1rem 0 0;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.author-bio__check {
    display: inline-grid;
    place-items: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--brand-ink);
    font-size: 0.72rem;
    font-weight: 800;
}
.author-bio__role {
    margin: 0.15rem 0 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.author-bio__text {
    margin: 0;
    line-height: 1.65;
}
.author-bio__creds {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
}
.author-bio__creds li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.author-bio__creds li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 700;
}
.author-bio__meta {
    margin: 0.6rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}
@media (max-width: 32rem) {
    .author-bio {
        flex-direction: column;
    }
}
.creview-header__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.8rem;
    flex-wrap: wrap;
    max-width: none;
}
.creview-header__pub {
    font-family: var(--display);
    font-weight: 700;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.creview-header__sep {
    color: var(--muted);
}
.creview-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text);
}
.creview-header__logo {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: contain;
    background: #0c0b12;
}
.creview-header__nav {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}
.creview-header__nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
}
.creview-header__nav a:hover {
    color: var(--gold-light);
}
.creview-header__cta {
    display: flex;
    gap: 0.5rem;
}
.creview-header__cta .btn {
    padding: 0.5rem 1.1rem;
}
.creview-header__disc {
    margin: 0;
    padding: 0.3rem 1rem;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 48rem) {
    .creview-header__nav {
        display: none;
    }
    .creview-header__cta {
        margin-left: auto;
    }
}

/* Hero */
.btn--lg {
    padding: 0.85rem 1.6rem;
    font-size: 1.05rem;
}
.creview-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    border-bottom: 1px solid var(--gold-border);
    background:
        linear-gradient(180deg, rgba(8, 8, 11, 0.72), rgba(8, 8, 11, 0.92)),
        radial-gradient(
            900px 380px at 22% 12%,
            color-mix(in srgb, var(--accent) 45%, transparent),
            transparent 70%
        ),
        var(--hero-img, none), linear-gradient(135deg, #1c1830, #0a090e);
    background-size: cover;
    background-position: center;
}
.creview-hero__inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-block: 8.5rem 4rem;
    flex-wrap: wrap;
}
.creview-hero__logo {
    width: clamp(150px, 16vw, 220px);
    height: clamp(150px, 16vw, 220px);
    border-radius: 24px;
    object-fit: contain;
    padding: 14px;
    background: rgba(12, 11, 18, 0.85);
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow), var(--glow);
}
.creview-hero__logo--ph {
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3.5rem, 6vw, 5rem);
    color: var(--gold-light);
}
.creview-hero__body {
    flex: 1;
    min-width: 16rem;
}
.creview-hero__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--accent);
}
.creview-hero__title {
    margin: 0.15rem 0 0.6rem;
    font-size: clamp(2.6rem, 1.3rem + 4.6vw, 4.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    line-height: 1.02;
    color: #fff;
    text-shadow:
        0 2px 22px rgba(0, 0, 0, 0.6),
        0 1px 0 rgba(0, 0, 0, 0.5);
}
.creview-hero__rating {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    font-weight: 700;
}
.creview-hero__bonus {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}
.creview-hero__bonus strong {
    font-family: var(--display);
    color: var(--gold-light);
    font-size: 1.5rem;
}
.creview-hero__bonus span {
    color: var(--text);
    margin-left: 0.5rem;
}
.creview-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.creview-hero__license {
    font-size: 0.85rem;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.35);
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
}
.creview-hero__terms {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0.6rem 0 0;
}

/* Active inner-page nav + section label */
.creview-header__nav a.is-active { color: var(--gold-light); position: relative; }
.creview-header__nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.4rem; height: 2px; background: var(--gold); border-radius: 2px; }
.creview-hero__section { display: block; font-size: 0.5em; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }

/* Header right-aligns the CTAs; inner-page tabs sit on a scrollable sub-nav row */
.creview-header__cta { margin-left: auto; }
.creview-subnav-wrap { border-top: 1px solid rgba(212, 175, 55, 0.12); }
.creview-subnav { display: flex; gap: 0.2rem; overflow-x: auto; padding-block: 0.3rem; scrollbar-width: thin; }
.creview-subnav a { white-space: nowrap; padding: 0.4rem 0.75rem; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.creview-subnav a:hover { color: var(--gold-light); }
.creview-subnav a.is-active { color: var(--gold-light); background: rgba(212, 175, 55, 0.12); }

/* Inner casino pages keep the full-height hero (inherits min-height:100dvh from the base),
   just with a slightly smaller logo and generous, header-clearing vertical spacing. */
.creview-hero--compact .creview-hero__inner { padding-block: 10rem 5rem; }
.creview-hero--compact .creview-hero__logo { width: clamp(120px, 12vw, 170px); height: clamp(120px, 12vw, 170px); }

/* Inner-page quick cards on the main review */
.op-subcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 0.85rem; margin: 1.5rem 0; }
.op-subcard { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem 1.15rem; background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease; }
.op-subcard:hover { border-color: var(--gold); transform: translateY(-2px); }
.op-subcard strong { font-family: var(--display); color: var(--gold-light); }
.op-subcard span { color: var(--muted); font-size: 0.85rem; }
.op-more-pages { margin-block: 2rem; }

/* Bonus inner page */
.bonus-box { text-align: center; background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.5rem; margin: 1rem 0 1.5rem; box-shadow: var(--shadow); }
.bonus-box__amount { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); color: var(--gold-light); margin: 0; }
.bonus-box__spins { color: var(--text); margin: 0.25rem 0 1rem; }

/* Complaint submission form */
.complaint-form-wrap { background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; box-shadow: var(--shadow); }
.complaint-form { display: flex; flex-direction: column; gap: 0.9rem; }
.complaint-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; color: var(--muted); }
.complaint-form input, .complaint-form select, .complaint-form textarea { width: 100%; padding: 0.6rem 0.7rem; background: #0c0b12; border: 1px solid var(--border); border-radius: 8px; color: var(--text); font: inherit; }
.complaint-form input:focus, .complaint-form select:focus, .complaint-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.complaint-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 36rem) { .complaint-form .form-row { grid-template-columns: 1fr; } }
.complaint-form .opt { color: var(--muted); font-weight: 400; font-size: 0.8em; }
.complaint-form .checkbox { flex-direction: row; align-items: flex-start; gap: 0.5rem; color: var(--text); }
.complaint-form .checkbox input { width: auto; margin-top: 0.2rem; flex: none; }
.complaint-form button { align-self: flex-start; }
.complaint-form__note { font-size: 0.75rem; color: var(--muted); margin: 0; }
.complaint-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Review layout: content + sticky offer sidebar */
.creview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.creview-content {
    min-width: 0;
    margin-top: 5px;
}
.creview-aside {
    display: none;
}
@media (min-width: 62rem) {
    .creview-layout {
        grid-template-columns: minmax(0, 1fr) 21rem;
        align-items: stretch;
    }
    .creview-aside {
        display: block;
    }
}
.creview-sticky {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.creview-sticky__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.creview-sticky__logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: #0c0b12;
    border: 1px solid var(--gold-border);
    flex: none;
}
.creview-sticky__logo--ph {
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1.4rem;
}
.creview-sticky__name {
    display: block;
    font-family: var(--display);
    font-size: 1.1rem;
}
.creview-sticky__rating {
    font-size: 0.85rem;
    color: var(--muted);
}
.creview-sticky__rating .op-card__stars {
    color: var(--gold);
}
.creview-sticky__bonus {
    text-align: center;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.06);
    padding: 0.7rem;
}
.creview-sticky__bonus-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.creview-sticky__bonus strong {
    display: block;
    font-family: var(--display);
    color: var(--gold-light);
    font-size: 1.25rem;
}
.creview-sticky__spins {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
.creview-sticky__cta {
    text-align: center;
}
.creview-sticky__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.creview-sticky__row .btn {
    text-align: center;
}
.creview-sticky__lic {
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0;
    text-align: center;
}

/* Mobile: sidebar minimizes to a fixed bottom CTA bar */
.creview-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 36;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.9rem;
    background: rgba(10, 9, 14, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--gold-border);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}
.creview-cta-bar__info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}
.creview-cta-bar__logo {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    object-fit: contain;
    background: #0c0b12;
    border: 1px solid var(--gold-border);
    flex: none;
}
.creview-cta-bar__text {
    min-width: 0;
    line-height: 1.2;
}
.creview-cta-bar__text strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 0.95rem;
}
.creview-cta-bar__text span {
    color: var(--muted);
    font-size: 0.75rem;
}
.creview-cta-bar .btn {
    flex: none;
}
@media (min-width: 62rem) {
    .creview-cta-bar {
        display: none;
    }
}
@media (max-width: 62rem) {
    body.creview {
        padding-bottom: 4.75rem;
    }
    .creview .rg-bar {
        position: static;
    } /* avoid stacking under the fixed CTA bar */
}

/* Responsible-gambling logos / badges (footer) */
.rg-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin: 0.25rem 0 1rem;
}
.rg-logos__age {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--gold-border);
    color: var(--gold-light);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1;
}
.rg-logos__age sup {
    font-size: 0.55em;
}
.rg-logos__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}
.rg-logos__badge:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}
.rg-logos__badge--img {
    padding: 0.3rem 0.5rem;
}
.rg-logos__badge--img img {
    height: 28px;
    width: auto;
    display: block;
}

/* Featured casinos (3-up block under the hero) */
.featured {
    padding-block: 2.5rem;
    background: linear-gradient(180deg, #0c0b11, var(--bg));
    border-bottom: 1px solid var(--gold-border);
}
.featured__heading {
    text-align: center;
    margin: 0 0 1.5rem;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.featured-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.4rem 1.25rem;
    box-shadow: var(--shadow);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}
.featured-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow), var(--glow);
    transform: translateY(-2px);
}
.featured-card__logo {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    background: linear-gradient(160deg, #231d30, #0c0b12);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.featured-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.featured-card__mono {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--gold-light);
}
.featured-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.featured-card__name a {
    color: var(--text);
    text-decoration: none;
}
.featured-card__name a:hover {
    color: var(--gold-light);
}
.featured-card__rating {
    margin: 0;
    display: inline-flex;
    gap: 0.35rem;
    align-items: baseline;
}
.featured-card__rating .op-card__stars {
    color: var(--gold);
    letter-spacing: 0.08em;
}
.featured-card__rating b {
    color: var(--gold-light);
}
.featured-card__bonus {
    margin: 0;
    font-family: var(--display);
    color: var(--gold-light);
    font-size: 1.05rem;
}
.featured-card__cta {
    width: 100%;
    max-width: 15rem;
}
.featured-card__lic {
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0.3rem 0 0;
}
@media (max-width: 48rem) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* "Best" landing pages — ranked list */
.lead-prose { font-size: 1.05rem; color: var(--muted); max-width: 46rem; }
.best-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.best-item { position: relative; margin-block: 1.25rem; }
.best-item .op-card { margin: 0; }
.best-rank { position: absolute; top: -0.7rem; left: -0.7rem; z-index: 2; display: inline-grid; place-items: center; min-width: 2.3rem; height: 2.3rem; padding: 0 0.45rem; border-radius: 99px; background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: var(--brand-ink); font-family: var(--display); font-weight: 800; font-size: 1rem; box-shadow: var(--shadow); }

/* Slot review page */
section[id] { scroll-margin-top: 6rem; }
.slot-summary { background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.5rem; margin: 1rem 0 1.5rem; box-shadow: var(--shadow); }
.slot-summary__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.slot-summary__eyebrow { margin: 0; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--gold); }
.slot-summary__title { margin: 0.15rem 0 0.25rem; font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.8rem); }
.slot-summary__by { margin: 0; color: var(--muted); font-size: 0.9rem; }
.slot-summary__score { flex: none; display: grid; place-items: center; text-align: center; min-width: 5rem; padding: 0.6rem 0.9rem; border: 1px solid var(--gold-border); border-radius: var(--radius); background: rgba(212, 175, 55, 0.06); }
.slot-summary__score-num { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; color: var(--gold-light); }
.slot-summary__score .op-card__stars { color: var(--gold); font-size: 0.85rem; }
.slot-summary__score-out { font-size: 0.7rem; color: var(--muted); }
.slot-keyfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr)); gap: 0.75rem; margin: 1.25rem 0; }
.slot-keyfacts div { background: var(--surface-2); border-radius: 8px; padding: 0.6rem 0.75rem; }
.slot-keyfacts dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.slot-keyfacts dd { margin: 0.1rem 0 0; font-weight: 700; color: var(--gold-light); }
.slot-summary__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.slot-bonusfeatures { display: grid; gap: 0.85rem; margin: 1rem 0; }
.slot-bonusfeatures div { background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 0.9rem 1.1rem; }
.slot-bonusfeatures dt { font-family: var(--display); font-weight: 700; color: var(--gold-light); margin-bottom: 0.25rem; }
.slot-bonusfeatures dd { margin: 0; color: var(--muted); line-height: 1.6; }
.slot-similar { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 0.5rem; }
.slot-similar a { color: var(--text); text-decoration: none; font-weight: 600; }
.slot-similar a:hover { color: var(--gold-light); }

/* Home hero (market-aware positioning) */
.home-hero { text-align: center; max-width: 52rem; margin: 2.5rem auto 2rem; }
.home-hero__eyebrow { margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; color: var(--gold); }
.home-hero__title { margin: 0 0 1rem; font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.6rem); font-weight: 800; line-height: 1.08; color: var(--gold-light); text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); }
.home-hero__sub { margin: 0 auto 1.5rem; max-width: 40rem; }
.home-hero__cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.home-hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem; list-style: none; padding: 0; margin: 0; }
.home-hero__trust li { position: relative; padding-left: 1.35rem; color: var(--muted); font-size: 0.9rem; }
.home-hero__trust li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }

.home-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 46rem; margin: 0 auto 2.5rem; }
.home-stats__item { text-align: center; background: linear-gradient(180deg, var(--surface), #100e16); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.1rem 1rem; box-shadow: var(--shadow); }
.home-stats__item strong { display: block; font-family: var(--display); font-size: 1.9rem; line-height: 1; color: var(--gold-light); }
.home-stats__item span { display: block; margin-top: 0.35rem; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 34rem) { .home-stats { grid-template-columns: 1fr; } }

/* Content prose */
.prose {
    max-width: 42rem;
    line-height: 1.7;
}

/* Vertical rhythm: consistent flow spacing, generous above headings, tight below. */
.prose > * {
    margin-block: 0;
}
.prose > * + * {
    margin-top: 1.15rem;
}
.prose > :first-child {
    margin-top: 0;
}
.prose h2 {
    margin-top: 2.6rem;
}
.prose h3 {
    margin-top: 1.9rem;
}
.prose h2 + *,
.prose h3 + * {
    margin-top: 0.7rem;
}
.prose ul,
.prose ol {
    padding-left: 1.35rem;
}
.prose li + li {
    margin-top: 0.4rem;
}
/* On operator review pages, the in-depth review spans the main column, but the
   TEXT blocks sit in a slightly narrower centered measure for readability while
   tables (and other wide blocks) keep the full main width. */
.creview .operator-review {
    max-width: none;
}
.creview .operator-review > p,
.creview .operator-review > ul,
.creview .operator-review > ol,
.creview .operator-review > h2,
.creview .operator-review > h3,
.creview .operator-review > blockquote {
    max-width: 52rem;
    margin-inline: auto;
}

/* Breathing room between the top-level blocks of a review page. */
.creview main > section {
    margin-top: 2.5rem;
}
.creview main > section:first-of-type {
    margin-top: 1.5rem;
}

/* Tables inside review/guide prose */
.prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    background: linear-gradient(180deg, var(--surface), #100e16);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.prose thead th {
    text-align: left;
    padding: 0.75rem 0.9rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid var(--gold-border);
}
.prose tbody th {
    text-align: left;
}
.prose td,
.prose tbody th {
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.prose tbody tr:last-child td,
.prose tbody tr:last-child th {
    border-bottom: 0;
}
.prose tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}
.prose tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}
.prose tbody th:first-child {
    color: var(--text);
    font-weight: 600;
}
@media (max-width: 40rem) {
    .prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.lead {
    font-size: 1.15rem;
    color: var(--muted);
}
.grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 40rem) {
    .grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Operator / publisher contact card on legal pages (About) */
.contact-card {
    margin: 2.5rem 0 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
}
.contact-card__title {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.contact-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-style: normal;
    line-height: 1.55;
}
.contact-card__name {
    font-weight: 700;
    color: var(--ink, #f3eee2);
}
.contact-card__reg {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.contact-card__contact {
    margin-top: 0.55rem;
}
.contact-card__contact a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-border);
}
.contact-card__contact a:hover {
    color: var(--gold-light);
}
