:root {
    --bg: #101014;
    --bg-elevated: #171318;
    --surface: #21171b;
    --surface-strong: #2C1B1F;
    --surface-soft: rgba(255, 255, 255, 0.045);
    --ink: #FFFFFF;
    --muted: #adc1db;
    --muted-strong: #deecff;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(31, 95, 255, 0.34);
    --purple: #1f5fff;
    --violet: #6ad8ff;
    --blue: #1f5fff;
    --pink: #6ad8ff;
    --green: #69f0b5;
    --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(106, 216, 255, 0.15), transparent 30%),
        radial-gradient(circle at 6% 38%, rgba(11, 191, 136, 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: #deecff;
    background: linear-gradient(100deg, #ffffff 2%, #FFD0DE 42%, #69f0b5 78%, #6ad8ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 16, 20, 0.90);
    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(31, 95, 255, .12);
    border: 1px solid rgba(106, 216, 255, .36);
    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: #f5fbff;
    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(31, 95, 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(106, 216, 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: #b3e0ff;
    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: #bfe5ff;
    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(110, 188, 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: #79deff;
    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(31, 95, 255, 0.06);
    border: 1px solid rgba(110, 188, 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: #79deff;
    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: #c6e7ff;
}

.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: #b5e1ff;
    background: rgba(143, 100, 255, 0.12);
    border-radius: 999px;
    font-size: 0.68rem;
}

.review-card time {
    margin-left: auto;
    color: #8fa9c8;
    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: #bde5ff;
    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: #afdfff;
    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: #dbedff;
    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(110, 188, 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: #79deff;
    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(110, 188, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(31, 95, 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: #cbeaff;
    background: rgba(31, 95, 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: #deedfb;
    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: #e0f2ff;
}

.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(106, 216, 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(31, 95, 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: #d9ebff;
}

.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: #87dbff;
    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: #8fa9c8;
    font-size: 0.74rem;
}

.slot-compare-result dd {
    margin: 0;
    color: #d9e7f5;
    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: #bbe4ff;
}

.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, #5fdcff, #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(106, 216, 255, 0.25), transparent 35%),
        #0d0b1b;
    border: 1px solid rgba(110, 188, 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: #bbe4ff;
    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: #96aec9;
    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: #92aac7;
    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(31, 95, 255, .15), rgba(36, 22, 72, .62));
    border: 1px solid rgba(110, 188, 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: #f5fbff;
    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, #1f5fff, #4ea5ff);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 95, 255, .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(31, 95, 255, .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: #f5fbff;
    text-decoration: none;
    background: rgba(8, 6, 18, .58);
    border: 1px solid var(--line);
    border-radius: 15px;
}

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

.related-links span {
    color: #9ed6ff;
    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: #deecfb;
    background: rgba(116, 71, 220, .1);
    border: 1px solid rgba(110, 188, 255, .25);
    border-left: 4px solid #4ea5ff;
    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: #cbeaff;
    background: rgba(134, 86, 245, .1);
    border: 1px solid rgba(110, 188, 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: #9db3cd;
    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(106, 216, 255, 0.20), transparent 38%),
        linear-gradient(135deg, rgba(31, 95, 255, 0.12), rgba(78, 121, 255, 0.055));
    border: 1px solid rgba(110, 188, 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: #91aac8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.article-info-banner dd {
    margin: 4px 0 0;
    color: #f5fbff;
    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: #90a8c5;
    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: #7bdcff;
    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;
    }
}

/* Vodka brand refinements */
.brand img{width:190px;height:58px}.btn.primary{background:linear-gradient(100deg,#6ad8ff,#1f5fff)}.btn.primary:hover{box-shadow:0 14px 38px rgba(106, 216, 255, .30)}.security-status,.notice{border-color:rgba(99,245,168,.22)}

/* Vodka Casino brand */
:root{--accent:#41c6ff;--accent-2:#1a64fc;--success:#28ff69;--bg:#050d20;--bg-soft:#0a1733;--card:#0e2146;--border:rgba(65,198,255,.22);--text:#f5f9ff;--muted:#a9b9d5}
body{background:radial-gradient(circle at 85% 8%,rgba(26,100,252,.18),transparent 30%),linear-gradient(180deg,#050d20,#08142d 42%,#050d20);color:var(--text)}
a,.section-head>a{color:#70d7ff}.btn.primary{background:linear-gradient(135deg,#41c6ff,#1a64fc);color:#031024}.btn.primary:hover{filter:brightness(1.08)}
.hero{background:linear-gradient(135deg,rgba(8,25,57,.96),rgba(9,61,126,.78));border-bottom:1px solid rgba(65,198,255,.2)}
.card,.trust-card,.benefit,.toc-card,.review-card,.article-info-banner,.feature-grid>a{background:linear-gradient(180deg,rgba(14,33,70,.94),rgba(7,20,46,.96));border-color:rgba(65,198,255,.2)}
.security-status,.notice{border-color:rgba(40,255,105,.28);background:rgba(40,255,105,.07)}


/* Bonus benefit cards */
.section-head > div { min-width: 0; }
.section-head p { max-width: 820px; margin: 10px 0 0; color: var(--muted); }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.benefit-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit {
    display: flex;
    min-width: 0;
    min-height: 150px;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, rgba(14,33,70,.94), rgba(7,20,46,.96));
    border: 1px solid rgba(65,198,255,.20);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(0,0,0,.16);
}
.benefit strong {
    display: block;
    color: #f5f9ff;
    font-size: 1.08rem;
    line-height: 1.25;
}
.benefit span {
    display: block;
    color: #b7c8e3;
    line-height: 1.58;
}
@media (max-width: 900px) {
    .benefit-grid, .benefit-grid.three { grid-template-columns: 1fr; }
    .benefit { min-height: 0; }
}
@media (max-width: 620px) {
    .section-head { align-items: flex-start; }
    .section-head > a { flex: 0 0 auto; }
    .benefit { padding: 20px; }
}

/* ------------------------------------------------------------------
   Vodka Casino blue / cyan / white theme refresh — v1.1.1
   Goal: align the whole site with the logo palette and remove
   pink / magenta gradients from the public theme.
   ------------------------------------------------------------------ */
:root {
    --bg: #04111f;
    --bg-elevated: #071a31;
    --surface: #0b2141;
    --surface-strong: #12305c;
    --card: #0c2144;
    --ink: #f5fbff;
    --muted: #adc1db;
    --muted-strong: #deecff;
    --line: rgba(110, 188, 255, 0.18);
    --line-strong: rgba(110, 188, 255, 0.34);
    --purple: #1597ff;
    --violet: #6ad8ff;
    --blue: #1f5fff;
    --pink: #6ad8ff;
    --green: #69f0b5;
    --accent: #6ad8ff;
    --accent-2: #1f5fff;
    --success: #69f0b5;
    --shadow: 0 18px 44px rgba(2, 10, 26, 0.34);
    --shadow-soft: 0 14px 36px rgba(2, 10, 26, 0.28);
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 84% 8%, rgba(31, 95, 255, 0.18), transparent 30%),
        radial-gradient(circle at 8% 30%, rgba(106, 216, 255, 0.10), transparent 24%),
        linear-gradient(180deg, #04111f 0%, #07192f 48%, #04111f 100%);
}

body::before {
    background:
        radial-gradient(circle at 88% 0%, rgba(106, 216, 255, 0.14), transparent 30%),
        radial-gradient(circle at 6% 38%, rgba(31, 95, 255, 0.10), transparent 25%);
}

::selection {
    color: #04111f;
    background: #91e4ff;
}

.gradient-text {
    color: #dff4ff;
    background: linear-gradient(100deg, #ffffff 2%, #d8f1ff 36%, #88deff 72%, #1f5fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header {
    background: rgba(5, 17, 34, 0.92);
    border-bottom: 1px solid var(--line);
}

.page-hero,
.hero {
    background:
        radial-gradient(circle at 85% 0%, rgba(106, 216, 255, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(6, 18, 39, 0.96), rgba(10, 38, 79, 0.96) 62%, rgba(7, 24, 52, 0.98));
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    background: radial-gradient(circle at 0 30%, rgba(106, 216, 255, 0.09), transparent 34%);
}

.page-hero::after {
    background: rgba(38, 122, 255, 0.14);
}

h1,
h2,
h3,
h4,
.stats-card strong,
.benefit strong,
.slot-compare-result h3,
.article-info-banner dd,
.author-tile h2,
.author-card h1,
.author-card h2,
.card h2 {
    color: #f7fbff;
}

.eyebrow,
.text-card-grid span,
.slot-compare-result > div > span,
.article-info-banner dt,
.text-card-grid span {
    color: #8fdfff;
}

.page-hero p,
.main-nav a,
.breadcrumbs,
.stats-card span,
.section-head p,
.prose .lead,
.prose-section p,
.prose p,
.toc-card span,
.text-card-grid p,
.faq p,
.review-card p,
.author-tile p,
.author-card p,
.article-info-note,
.article-info-banner p,
.notice,
.notice p,
.benefit span,
.slot-compare-summary,
.slot-compare-result dt,
.slot-compare-result dd,
td,
.article-meta,
.footer-column p,
footer li,
footer span {
    color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.toc-card a,
.prose a,
.section-head > a,
.breadcrumbs a,
.age-gate-card > a,
.footer-column a,
.link-list a,
.directory-columns a {
    color: #79deff;
}

.card,
.trust-card,
.benefit,
.toc-card,
.review-card,
.article-info-banner,
.feature-grid > a,
.text-card-grid a,
.faq details,
.author-tile,
.authors-mini > a,
.author-card,
.stats-card,
.security-status,
.notice,
.article-sidebar .card,
.review-form,
.slot-compare,
.article-cover-wrap {
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.card,
.trust-card,
.benefit,
.toc-card,
.review-card,
.article-info-banner,
.feature-grid > a,
.text-card-grid a,
.faq details,
.author-tile,
.authors-mini > a,
.author-card,
.stats-card,
.slot-compare,
.article-sidebar .card,
.review-form {
    background: linear-gradient(180deg, rgba(11, 33, 65, 0.96), rgba(7, 20, 40, 0.98));
}

.article-info-banner {
    background:
        radial-gradient(circle at 92% 0%, rgba(106, 216, 255, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(31, 95, 255, 0.13), rgba(10, 37, 76, 0.92));
    border-color: rgba(110, 188, 255, 0.28);
}

.article-info-banner dl div {
    background: rgba(4, 15, 31, 0.35);
    border: 1px solid rgba(110, 188, 255, 0.12);
}

.article-cover-wrap .article-cover,
.slot-compare-result figure,
table {
    background: #08182f;
}

.table-wrap,
blockquote,
.review-card,
.faq details,
.text-card-grid a,
.toc-card {
    border-color: var(--line);
}

th {
    color: #d8ecff;
}

input,
select,
textarea,
.review-form input,
.review-form select,
.review-form textarea,
.slot-compare-controls select {
    color: #f5fbff;
    background: #0a1a34;
    border-color: rgba(110, 188, 255, 0.20);
}

input:focus,
select:focus,
textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus,
.slot-compare-controls select:focus {
    border-color: rgba(110, 188, 255, 0.56);
    box-shadow: 0 0 0 3px rgba(106, 216, 255, 0.12);
}

.btn.primary,
.swap-button {
    color: #051120 !important;
    -webkit-text-fill-color: #051120 !important;
    background: linear-gradient(135deg, #78e0ff, #1f5fff) !important;
    box-shadow: 0 14px 34px rgba(31, 95, 255, 0.28);
}

.btn.primary:hover,
.swap-button:hover {
    filter: brightness(1.08);
}

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

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--line-strong);
}

.menu-button {
    color: #f5fbff;
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
}

.age-badge,
.age-gate-mark {
    color: #fff !important;
    background: linear-gradient(135deg, #ff5555, #bc1717) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 28px rgba(188, 23, 23, 0.22);
}

.age-gate-card {
    background:
        radial-gradient(circle at 90% 5%, rgba(106, 216, 255, 0.20), transparent 35%),
        #07162c;
    border: 1px solid rgba(110, 188, 255, 0.25);
}

.security-status,
.notice {
    background: rgba(53, 136, 255, 0.08);
    border-color: rgba(110, 188, 255, 0.24);
}

.notice.success,
.security-status.success {
    background: rgba(105, 240, 181, 0.08);
    border-color: rgba(105, 240, 181, 0.24);
}

.author-avatar {
    color: #fff;
    background: linear-gradient(135deg, #6ad8ff, #1f5fff);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(31, 95, 255, 0.22);
}

.sidebar-section,
.slot-compare-summary {
    background: rgba(255, 255, 255, 0.03);
}

.slot-compare-result + .slot-compare-result,
.slot-compare-controls,
.slot-compare-summary,
.slot-compare-result dl div,
.stats-card div,
.article-info-note,
.review-card footer,
.footer-bottom,
.footer-grid,
.footer-column ul li,
.compare-controls,
.compare-table tr + tr {
    border-color: var(--line);
}

.section.soft,
.section-muted {
    background: rgba(255, 255, 255, 0.018);
}

footer {
    background: #051120;
}

@media (max-width: 900px) {
    .page-hero,
    .hero {
        background:
            radial-gradient(circle at 70% 0%, rgba(106, 216, 255, 0.14), transparent 28%),
            linear-gradient(160deg, rgba(6, 18, 39, 0.98), rgba(9, 33, 68, 0.98));
    }
}


/* Final palette hardening — fully blue / cyan / black / white */
body, .site-header, footer, .page-hero, .hero, .card, .trust-card, .benefit, .toc-card, .review-card, .article-info-banner, .feature-grid > a, .text-card-grid a, .faq details, .author-tile, .authors-mini > a, .author-card, .stats-card, .security-status, .notice, .article-sidebar .card, .review-form, .slot-compare, .article-cover-wrap {
    box-shadow: 0 14px 34px rgba(8, 32, 78, 0.22), 0 0 0 1px rgba(110, 188, 255, 0.04);
}
.btn.primary, .swap-button, .btn.primary.large, .compare-controls .btn, .hero-actions .btn.primary {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 1px 0 rgba(0,0,0,0.16);
    background: linear-gradient(135deg, #51d6ff 0%, #2f86ff 52%, #1f5fff 100%) !important;
    box-shadow: 0 14px 34px rgba(31, 95, 255, 0.34), 0 0 20px rgba(106, 216, 255, 0.14) !important;
}
.btn.primary:hover, .swap-button:hover, .btn.primary.large:hover, .compare-controls .btn:hover, .hero-actions .btn.primary:hover {
    box-shadow: 0 16px 40px rgba(31, 95, 255, 0.38), 0 0 24px rgba(106, 216, 255, 0.18) !important;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"], .toc-card a:hover, .breadcrumbs a:hover, .footer-column a:hover, .link-list a:hover, .directory-columns a:hover, .prose a:hover {
    color: #95e6ff !important;
}
.section.soft, .section-muted, .sidebar-section, .slot-compare-summary, .article-info-note, .table-wrap, blockquote, .compare-table, .related-links a {
    background: rgba(9, 24, 47, 0.72) !important;
    border-color: rgba(110, 188, 255, 0.18) !important;
}
.notice.success, .security-status.success {
    background: rgba(78, 205, 255, 0.08) !important;
    border-color: rgba(110, 188, 255, 0.26) !important;
}
.footer-trust span, .chip, .badge, .tag, .article-meta span, .slot-meta span, .provider-meta span, .review-card footer span {
    background: rgba(20, 63, 122, 0.34) !important;
    border-color: rgba(110, 188, 255, 0.18) !important;
    color: #dff4ff !important;
}
.age-badge, .age-gate-mark {
    color: #fff !important;
}

/* ================================================================
   Vodka WTF footer CTA palette hotfix v1.2
   Explicitly overrides the old violet footer CTA background.
   ================================================================ */
.footer-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 50%, rgba(69, 177, 255, 0.18) 0%, rgba(69, 177, 255, 0.07) 24%, transparent 48%),
        linear-gradient(120deg, #030a14 0%, #071426 43%, #0a2241 72%, #040b16 100%) !important;
    border-top: 1px solid rgba(106, 216, 255, 0.24) !important;
    border-bottom: 1px solid rgba(31, 95, 255, 0.20) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        inset 0 -24px 60px rgba(1, 7, 17, 0.24),
        0 16px 44px rgba(2, 10, 26, 0.22) !important;
}

.footer-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(106, 216, 255, 0.035) 48%, transparent 100%),
        radial-gradient(circle at 18% 120%, rgba(31, 95, 255, 0.14), transparent 34%);
}

.footer-cta > .container {
    position: relative;
    z-index: 1;
}

.footer-cta span {
    color: #8fdfff !important;
}

.footer-cta h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(31, 95, 255, 0.10);
}

.footer-cta p {
    color: #b9cce5 !important;
}

.footer-cta .btn.primary,
.footer-cta .btn.primary.large {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: linear-gradient(135deg, #55d8ff 0%, #318bff 52%, #1f5fff 100%) !important;
    border-color: rgba(151, 230, 255, 0.28) !important;
    box-shadow:
        0 14px 34px rgba(31, 95, 255, 0.38),
        0 0 24px rgba(106, 216, 255, 0.16) !important;
}

.footer-cta .btn.primary:hover,
.footer-cta .btn.primary.large:hover {
    box-shadow:
        0 17px 42px rgba(31, 95, 255, 0.44),
        0 0 30px rgba(106, 216, 255, 0.21) !important;
}
