:root {
    --bg: #070611;
    --bg-elevated: #0c0b18;
    --surface: #111021;
    --surface-strong: #17142b;
    --surface-soft: rgba(255, 255, 255, 0.045);
    --ink: #f8f7ff;
    --muted: #b8b3c7;
    --muted-strong: #d1ccdc;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(180, 153, 255, 0.30);
    --purple: #875cff;
    --violet: #b25fff;
    --blue: #4e79ff;
    --pink: #e36dff;
    --green: #58d68d;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.24);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-sans: "Aptos", "Aptos Display", "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 0%, rgba(131, 84, 255, 0.15), transparent 30%),
        radial-gradient(circle at 6% 38%, rgba(69, 104, 255, 0.08), transparent 25%),
        var(--bg);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 450;
    line-height: 1.65;
    letter-spacing: -0.008em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.age-locked {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(780px, 100%);
}

.skip {
    position: absolute;
    top: 10px;
    left: -999px;
}

.skip:focus {
    left: 10px;
    z-index: 999;
    padding: 10px 14px;
    color: #111;
    background: #fff;
    border-radius: 10px;
}

.gradient-text {
    color: #c4b1ff;
    background: linear-gradient(100deg, #ffffff 2%, #cab7ff 42%, #8ca2ff 78%, #d675ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 6, 17, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 82px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 200px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.main-nav a {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 720;
    text-decoration: none;
    transition: color 0.18s ease;
}

.main-nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-button {
    display: none;
    padding: 9px 12px;
    color: #fff;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 11px;
}

.age-badge {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(130, 87, 255, 0.12);
    border: 1px solid rgba(190, 164, 255, 0.35);
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 900;
}

.btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: 0 12px 30px rgba(98, 76, 255, 0.26);
}

.btn.primary:hover {
    filter: brightness(1.1);
}

.btn.ghost {
    color: #f3f0ff;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
}

.btn.ghost:hover {
    border-color: var(--line-strong);
}

.btn.large {
    padding: 15px 21px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 76px;
    background:
        radial-gradient(circle at 80% 35%, rgba(138, 80, 255, 0.20), transparent 28%),
        linear-gradient(145deg, #080715, #11102a 70%, #090815);
    border-bottom: 1px solid var(--line);
}

.page-hero::after {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    background: rgba(129, 85, 255, 0.17);
    border-radius: 50%;
    filter: blur(35px);
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #baa7ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.stats-card strong {
    margin-top: 0;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.042em;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.65rem, 5.15vw, 5.35rem);
    line-height: 0.98;
}

.page-hero p {
    max-width: 740px;
    margin: 24px 0 0;
    color: #c9c5d8;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.stats-card {
    display: grid;
    gap: 7px;
    padding: 23px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stats-card div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.stats-card div:last-child {
    border-bottom: 0;
}

.stats-card strong {
    color: #c6b5ff;
    font-size: 1.3rem;
}

.stats-card span {
    color: var(--muted);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 20px;
    color: #918ba4;
    font-size: 0.8rem;
}

.breadcrumbs a {
    text-decoration: none;
}

.section {
    padding: 74px 0;
}

.section.soft {
    background: var(--bg-elevated);
    border-block: 1px solid var(--line);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head h2,
.section > .container > h2,
.section h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.section-head > a {
    color: #c0adff;
    font-weight: 800;
    text-decoration: none;
}

.section-intro {
    max-width: 780px;
    margin: -10px 0 28px;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-grid a {
    min-height: 166px;
    padding: 23px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line);
    border-radius: 20px;
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.feature-grid a:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.feature-grid strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-grid span {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

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

.content-card {
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(165, 119, 255, 0.42);
    box-shadow: var(--shadow);
}

.content-card > a {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    text-decoration: none;
}

.card-media,
.provider-logo-box {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #0b0a19, #17132c);
    border-bottom: 1px solid var(--line);
}

.card-media {
    aspect-ratio: 16 / 10;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 0.28s ease;
}

.content-card:hover .card-media img {
    transform: scale(1.025);
}

.provider-logo-box {
    aspect-ratio: 16 / 7;
    padding: 18px;
}

.provider-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.content-card .card-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
}

.content-card .card-copy > span {
    overflow: hidden;
    color: #aa91ff;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.content-card h2 {
    display: -webkit-box;
    min-height: 2.55em;
    margin: 10px 0 8px;
    overflow: hidden;
    font-size: 1.2rem;
    line-height: 1.26;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.content-card-providers {
    min-height: 278px;
}

.content-card-providers .card-copy p {
    margin-top: auto;
}

.catalog-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: 18px 20px;
    background: rgba(130, 87, 255, 0.06);
    border: 1px solid rgba(166, 136, 255, 0.20);
    border-radius: 16px;
}

.catalog-tools p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    align-items: center;
}

.split p {
    color: var(--muted);
}

.check {
    padding: 0;
    list-style: none;
}

.check li {
    position: relative;
    padding: 8px 0 8px 27px;
}

.check li::before {
    position: absolute;
    left: 0;
    color: #a991ff;
    font-weight: 900;
    content: "✓";
}

.comparison-box {
    padding: 34px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.comparison-box h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.currency-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.currency-cloud span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.logo-grid a {
    display: grid;
    gap: 10px;
    padding: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.logo-grid a:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.logo-grid img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    background: #0b0a18;
    border-radius: 10px;
}

.logo-grid strong {
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-preview {
    display: grid;
    gap: 11px;
}

.review-preview article,
.review-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.review-preview p {
    margin: 7px 0 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 25px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 285px;
}

.review-card > p {
    flex: 1;
}

.review-card header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.review-card header div {
    display: grid;
}

.review-card header span {
    color: var(--muted);
    font-size: 0.78rem;
}

.review-card header b {
    color: #c7b5ff;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 16px !important;
    padding: 16px 0 0 !important;
    background: transparent !important;
    border-top: 1px solid var(--line) !important;
}

.review-card footer span {
    padding: 4px 8px;
    color: #bfaeff;
    background: rgba(143, 100, 255, 0.12);
    border-radius: 999px;
    font-size: 0.68rem;
}

.review-card time {
    margin-left: auto;
    color: #8f899f;
    font-size: 0.72rem;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 42px;
    align-items: start;
}

.prose {
    min-width: 0;
}

.prose .lead {
    color: #d8d4e4;
    font-size: 1.1rem;
}

.article-cover {
    width: 100%;
    max-height: 520px;
    margin-bottom: 35px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.prose-section {
    padding: 0 0 35px;
}

.prose-section h2,
.prose h2 {
    margin: 15px 0;
    font-size: clamp(1.75rem, 2.7vw, 2.6rem);
}

.prose-section p,
.prose p {
    color: #c6c1d2;
}

.prose a {
    color: #c4b4ff;
    text-underline-offset: 3px;
}

.toc-card {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 11px;
    padding: 23px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.toc-card a {
    color: #bba9ff;
    text-decoration: none;
}

.toc-card span {
    color: var(--muted);
}

.table-wrap {
    overflow: auto;
    margin: 22px 0;
    border: 1px solid var(--line);
    border-radius: 16px;
}

table {
    width: 100%;
    background: #0f0e1d;
    border-collapse: collapse;
}

th,
td {
    padding: 14px 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

th {
    color: #d8d0ff;
    font-size: 0.82rem;
}

td {
    color: #c5c0d1;
}

.notice {
    margin: 20px 0;
    padding: 18px 20px;
    color: #d8d2e6;
    background: rgba(130, 86, 255, 0.08);
    border: 1px solid rgba(146, 109, 255, 0.28);
    border-radius: 15px;
}

.notice.success {
    background: rgba(75, 211, 133, 0.08);
    border-color: rgba(75, 211, 133, 0.28);
}

.text-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.text-card-grid a {
    min-height: 204px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 19px;
    text-decoration: none;
}

.text-card-grid span {
    color: #a991ff;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.text-card-grid h2 {
    margin: 26px 0 10px;
    font-size: 1.42rem;
}

.text-card-grid p {
    color: var(--muted);
}

.faq {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.faq details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
}

.faq summary {
    padding: 17px 20px;
    font-weight: 800;
    cursor: pointer;
}

.faq p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
}

.review-form {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.review-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.review-form label:nth-of-type(3) {
    grid-column: 1 / -1;
}

.review-form input,
.review-form select,
.review-form textarea,
.slot-compare-controls select {
    width: 100%;
    padding: 13px;
    color: #fff;
    background: #121020;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus,
.slot-compare-controls select:focus {
    border-color: rgba(168, 137, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(130, 87, 255, 0.10);
}

.review-form textarea {
    min-height: 150px;
}

.review-form button {
    justify-self: start;
}

.provider-detail-logo {
    display: grid;
    place-items: center;
    min-height: 210px;
    margin-bottom: 34px;
    padding: 30px;
    background: linear-gradient(145deg, #0b0a19, #18132f);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.provider-detail-logo img {
    width: min(500px, 100%);
    max-height: 150px;
    object-fit: contain;
    border-radius: 14px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    padding: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--line);
    border-radius: 19px;
}

.trust-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
}

.trust-card span {
    color: var(--muted);
    font-size: 0.88rem;
}

.trust-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #c8b9ff;
    background: rgba(130, 87, 255, 0.16);
    border-radius: 13px;
    font-weight: 900;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #bfb7ce;
    font-size: 0.88rem;
}

.security-status::before {
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(88, 214, 141, 0.10);
    content: "";
}

.overview-nav {
    margin-top: 28px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.overview-nav h2 {
    margin: 0 0 7px;
    font-size: 1.55rem;
}

.overview-nav > p {
    margin: 0 0 18px;
    color: var(--muted);
}

.overview-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.overview-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    color: #ddd7ed;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    text-decoration: none;
}

.overview-links a:hover {
    color: #fff;
    border-color: rgba(169, 145, 255, 0.40);
}

.home-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
    align-items: start;
}

.home-overview .prose h2 {
    scroll-margin-top: 110px;
}

.home-overview .toc-card {
    max-height: calc(100vh - 130px);
    overflow: auto;
}

.fact-list {
    display: grid;
    gap: 11px;
    margin: 20px 0;
}

.fact-list > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.fact-list strong {
    color: #ddd5ff;
}

.fact-list span {
    color: var(--muted);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.pagination a,
.pagination span {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 11px;
    text-decoration: none;
}

.pagination .current {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border-color: transparent;
}

.pagination .disabled {
    opacity: 0.45;
}

.slot-comparison {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 0%, rgba(136, 91, 255, 0.15), transparent 32%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.slot-compare-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.slot-compare-controls label {
    display: grid;
    gap: 8px;
    color: #ddd8e7;
    font-size: 0.83rem;
    font-weight: 800;
}

.slot-compare-controls select {
    min-height: 48px;
    cursor: pointer;
}

.swap-button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: linear-gradient(135deg, rgba(135, 92, 255, 0.8), rgba(78, 121, 255, 0.8));
    border: 0;
    border-radius: 13px;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
}

.slot-compare-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 22px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.022);
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
}

.slot-compare-summary strong {
    color: #d7ccff;
}

.slot-compare-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slot-compare-result {
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
    gap: 20px;
    min-width: 0;
    padding: 22px;
}

.slot-compare-result + .slot-compare-result {
    border-left: 1px solid var(--line);
}

.slot-compare-result figure {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0a0915;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.slot-compare-result figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-compare-result > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.slot-compare-result > div > span {
    color: #a98fff;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.slot-compare-result h3 {
    margin: 7px 0 14px;
    font-size: 1.5rem;
    line-height: 1.1;
}

.slot-compare-result dl {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
}

.slot-compare-result dl div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.slot-compare-result dt {
    color: #8f899f;
    font-size: 0.74rem;
}

.slot-compare-result dd {
    margin: 0;
    color: #d9d5e3;
    font-size: 0.78rem;
}

.slot-compare-result .btn {
    align-self: flex-start;
    margin-top: auto;
}

.footer-cta {
    padding: 55px 0;
    background: linear-gradient(130deg, #15112d, #0b0a16);
    border-block: 1px solid var(--line);
}

.footer-cta > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-cta h2 {
    margin: 8px 0;
    font-size: 2rem;
}

.footer-cta p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    padding: 62px 0 18px;
    background: #05040b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 35px;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-grid img {
    width: 210px;
    height: 65px;
    object-fit: contain;
    object-position: left;
}

.footer-grid p,
.footer-grid a {
    color: #9f99ac;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-grid strong {
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    color: #777181;
    border-top: 1px solid var(--line);
    font-size: 0.74rem;
}

.mobile-bar {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 18px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(600px, calc(100% - 36px));
    padding: 17px;
    background: rgba(10, 8, 22, 0.97);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
}

.cookie-banner[hidden] {
    display: none;
}

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

.cookie-banner p a {
    color: #c3b1ff;
}

.cookie-banner > div {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.cookie-banner .btn.primary {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: linear-gradient(135deg, #895dff, #4a74ff) !important;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 1, 8, 0.90);
    backdrop-filter: blur(16px);
}

.age-gate[hidden] {
    display: none;
}

.age-gate-card {
    width: min(560px, 100%);
    padding: 34px;
    text-align: center;
    background:
        radial-gradient(circle at 90% 5%, rgba(131, 87, 255, 0.25), transparent 35%),
        #0d0b1b;
    border: 1px solid rgba(188, 167, 255, 0.25);
    border-radius: 28px;
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.age-gate-mark {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 950;
}

.age-gate-card h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
}

.age-gate-card p:not(.eyebrow) {
    color: var(--muted);
}

.age-gate-actions {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 10px;
    margin: 25px 0 18px;
}

.age-gate-card > a {
    color: #c3b1ff;
    font-size: 0.85rem;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 11px;
    }

    .main-nav a {
        font-size: 0.81rem;
    }

    .card-grid-slots,
    .card-grid-providers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1000px) {
    .header-actions {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 16px;
        background: #100e20;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .hero-grid,
    .article-layout,
    .home-overview {
        grid-template-columns: 1fr;
    }

    .stats-card {
        max-width: 600px;
    }

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

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

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

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

    .toc-card,
    .home-overview .toc-card {
        position: static;
        max-height: none;
    }

    .overview-links {
        grid-template-columns: 1fr;
    }

    .slot-compare-results {
        grid-template-columns: 1fr;
    }

    .slot-compare-result + .slot-compare-result {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .footer-grid > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .brand img {
        width: 172px;
        height: 56px;
    }

    .header-row {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
    }

    .page-hero {
        padding: 64px 0 56px;
    }

    .page-hero h1 {
        font-size: clamp(2.38rem, 11.5vw, 4.1rem);
    }

    .hero-grid {
        gap: 34px;
    }

    .section {
        padding: 54px 0;
    }

    .section-head {
        align-items: start;
    }

    .feature-grid,
    .card-grid,
    .text-card-grid,
    .reviews-grid,
    .split,
    .review-form,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .card-media {
        aspect-ratio: 16 / 9;
    }

    .content-card h2 {
        min-height: auto;
        font-size: 1.2rem;
    }

    .catalog-tools,
    .slot-compare-summary,
    .footer-cta > .container {
        display: grid;
    }

    .slot-compare-controls {
        grid-template-columns: 1fr;
    }

    .swap-button {
        width: 100%;
        height: 42px;
    }

    .slot-compare-result {
        grid-template-columns: 118px minmax(0, 1fr);
        padding: 16px;
    }

    .slot-compare-result dl div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .fact-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
        gap: 6px;
    }

    .age-badge {
        display: none;
    }

    .age-gate-actions {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        bottom: 76px;
        display: grid;
    }

    .cookie-banner > div {
        flex-wrap: wrap;
    }

    .mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        padding: 8px;
        background: #090713;
        border-top: 1px solid var(--line);
    }

    .mobile-bar a {
        padding: 11px;
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 900;
    }

    .mobile-bar a:last-child {
        background: linear-gradient(135deg, var(--purple), var(--blue));
    }

    body {
        padding-bottom: 62px;
    }
}

/* v0.9.3 release layout refinements */
.card-grid-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.card-grid-providers {
    align-items: start;
}

.content-card-articles,
.content-card-providers,
.content-card-slots {
    height: auto;
}

.content-card-articles > a,
.content-card-providers > a,
.content-card-slots > a {
    height: auto;
}

.card-media-articles {
    aspect-ratio: 1200 / 630;
}

.card-media-articles img {
    object-fit: cover;
    object-position: center;
}

.content-card-articles .card-copy {
    min-height: 220px;
}

.content-card-articles h2 {
    min-height: 2.7em;
}

.content-card-providers .card-copy {
    min-height: 190px;
}

.content-card-slots .card-copy {
    min-height: 205px;
}

.card-author {
    display: block;
    margin-top: auto;
    padding-top: 14px;
    color: #958ea6;
    font-size: .75rem;
}

.article-cover-wrap {
    margin: 0 0 32px;
}

.article-cover-wrap .article-cover {
    display: block;
    width: 100%;
    max-height: none;
    margin: 0;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    object-position: center;
}

.article-cover-wrap figcaption {
    padding: 10px 4px 0;
    color: #908a9d;
    font-size: .78rem;
}

.article-info-banner {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(360px, 1fr);
    gap: 24px;
    margin: 0 0 34px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(142, 72, 255, .15), rgba(36, 22, 72, .62));
    border: 1px solid rgba(167, 123, 255, .28);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.article-info-banner > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.article-info-banner p {
    margin: 0;
}

.article-info-banner p span {
    color: var(--muted);
    font-size: .85rem;
}

.article-info-banner dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.article-info-banner dl div {
    padding: 12px;
    background: rgba(7, 5, 17, .45);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.article-info-banner dt {
    margin-bottom: 4px;
    color: #8f899c;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.article-info-banner dd {
    margin: 0;
    color: #f5f1ff;
    font-size: .84rem;
    font-weight: 750;
}

.author-avatar {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: linear-gradient(135deg, #6b35ff, #ad4cf5);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(100, 45, 220, .25);
    font-weight: 900;
}

.author-avatar.small {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: .82rem;
}

.authors-grid,
.authors-mini {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.author-tile,
.authors-mini > a,
.author-card {
    background: linear-gradient(145deg, rgba(20, 16, 39, .96), rgba(10, 8, 22, .96));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.author-tile {
    padding: 22px;
}

.author-tile h2 {
    margin: 14px 0 8px;
}

.author-tile p {
    color: var(--muted);
}

.authors-mini > a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 3px;
    align-items: center;
    padding: 15px;
    color: inherit;
    text-decoration: none;
}

.authors-mini .author-avatar {
    grid-row: 1 / 3;
}

.authors-mini small {
    overflow: hidden;
    color: var(--muted);
    font-size: .72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.author-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 17px;
    margin: 28px 0;
    padding: 22px;
}

.author-card.compact {
    margin: 18px 0;
}

.author-card h2 {
    margin: 2px 0 6px;
    font-size: 1.25rem;
}

.author-card p {
    margin: 5px 0 0;
}

.related-block {
    margin: 34px 0 8px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(112, 57, 218, .11), rgba(10, 8, 22, .92));
    border: 1px solid var(--line);
    border-radius: 22px;
}

.related-block h2 {
    margin: 0 0 17px;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.related-links a {
    display: grid;
    gap: 7px;
    padding: 16px;
    color: #f6f2ff;
    text-decoration: none;
    background: rgba(8, 6, 18, .58);
    border: 1px solid var(--line);
    border-radius: 15px;
}

.related-links a:hover {
    border-color: rgba(165, 119, 255, .5);
    transform: translateY(-2px);
}

.related-links span {
    color: #ae9bff;
    font-size: .78rem;
}

.link-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.link-list li {
    color: #aaa4b6;
}

.editor-note {
    margin: 24px 0;
    padding: 18px 20px;
    color: #ded7ec;
    background: rgba(116, 71, 220, .1);
    border: 1px solid rgba(154, 113, 245, .25);
    border-left: 4px solid #9561ff;
    border-radius: 14px;
}

.footer-grid {
    grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(145px, 1fr));
    gap: 30px 26px;
}

.footer-grid > div:nth-child(n+5) {
    padding-top: 10px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.footer-trust span {
    padding: 5px 9px;
    color: #c8b9ff;
    background: rgba(134, 86, 245, .1);
    border: 1px solid rgba(159, 119, 255, .18);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .authors-grid,
    .authors-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .card-grid-articles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-info-banner {
        grid-template-columns: 1fr;
    }

    .article-info-banner dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .related-links {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .card-grid-articles,
    .authors-grid,
    .authors-mini,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .content-card-articles .card-copy,
    .content-card-providers .card-copy,
    .content-card-slots .card-copy {
        min-height: 0;
    }

    .article-info-banner dl {
        grid-template-columns: 1fr;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

.directory-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.directory-columns > div {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.directory-columns h3 {
    margin-top: 0;
}

.link-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 18px;
}

@media (max-width: 720px) {
    .directory-columns,
    .link-list.compact {
        grid-template-columns: 1fr;
    }
}


/* ================================================================
   Release 1.0: compact cards, author information and article layout
   ================================================================ */
.card-grid-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card-articles,
.content-card-providers,
.content-card-slots {
    min-height: 0;
}

.card-media-articles {
    aspect-ratio: 1200 / 630;
}

.card-media-articles img {
    object-position: center;
}

.content-card-articles .card-copy {
    min-height: 205px;
}

.content-card-providers .card-copy {
    min-height: 172px;
}

.content-card-slots .card-copy {
    min-height: 190px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    color: #9992aa;
    font-size: 0.72rem;
}

.card-meta time {
    white-space: nowrap;
}

.article-info-banner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(320px, 1.25fr);
    gap: 20px;
    margin: 0 0 24px;
    padding: 22px;
    background:
        radial-gradient(circle at 92% 0%, rgba(178, 95, 255, 0.20), transparent 38%),
        linear-gradient(135deg, rgba(135, 92, 255, 0.12), rgba(78, 121, 255, 0.055));
    border: 1px solid rgba(181, 151, 255, 0.34);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.article-info-banner > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-info-banner p {
    margin: 0;
}

.article-info-banner dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.article-info-banner dl div {
    padding-left: 13px;
    border-left: 1px solid var(--line);
}

.article-info-banner dt {
    color: #91899f;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.article-info-banner dd {
    margin: 4px 0 0;
    color: #f4f1ff;
    font-weight: 750;
}

.article-info-note {
    grid-column: 1 / -1;
    padding-top: 14px;
    color: #bbb4c9 !important;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
}

.article-cover-wrap {
    margin: 0 0 34px;
}

.article-cover-wrap .article-cover {
    aspect-ratio: 1200 / 630;
    max-height: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

.article-cover-wrap figcaption {
    margin-top: 9px;
    color: #8e879c;
    font-size: 0.78rem;
}

.author-facts {
    display: grid;
    gap: 10px;
    margin: 24px 0 34px;
}

.author-facts > div {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.author-facts span {
    color: var(--muted);
}

.verified-review {
    color: #73dca0;
    font-size: 0.7rem;
    white-space: nowrap;
}

.review-card footer .verified-review {
    margin-left: 6px;
}

.related-block {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.related-links a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 16px;
    color: #f2efff;
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
}

.related-links a:hover {
    border-color: var(--line-strong);
}

.related-links span {
    color: #a995ee;
    white-space: nowrap;
}

.page-depth h3 {
    margin-top: 28px;
    font-size: 1.35rem;
}

@media (max-width: 900px) {
    .card-grid-articles,
    .card-grid-providers,
    .card-grid-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-info-banner {
        grid-template-columns: 1fr;
    }

    .article-info-banner dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .card-grid-articles,
    .card-grid-providers,
    .card-grid-slots,
    .related-links {
        grid-template-columns: 1fr;
    }

    .content-card-articles .card-copy,
    .content-card-providers .card-copy,
    .content-card-slots .card-copy {
        min-height: 0;
    }

    .article-info-banner dl {
        grid-template-columns: 1fr;
    }

    .article-info-banner dl div {
        padding: 9px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .author-facts > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
