/* ============================================
   1RED CASINO - DESIGN SYSTEM
   Dark luxury crimson with platinum accents
   Mobile-first. Single dark theme.
   ============================================ */

/* ============================================
   RESET & OVERFLOW SAFETY
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
    font-size: var(--body-size);
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(225, 14, 46, 0.18), transparent 70%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 10, 26, 0.12), transparent 70%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper,
.table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

p, li, td, th {
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
    font: inherit;
}

section {
    overflow: clip;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    z-index: 2000;
    text-decoration: none;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY
   Playfair Display for headings (editorial serif)
   Inter Tight for body (crisp sans)
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}

h1 {
    font-size: var(--h1-size);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 700;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
}

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

p {
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}

a {
    color: #ff5670;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ff8095;
    text-decoration: underline;
    text-underline-offset: 3px;
}

strong, b {
    font-weight: 700;
    color: var(--foreground);
}

ul, ol {
    padding-left: 1.5rem;
    margin: 0 0 var(--space-md);
}

li {
    margin-bottom: 0.5rem;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   LAYOUT - Container and sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
}

section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    section {
        padding: var(--space-3xl) 0;
    }
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-eyebrow {
    display: inline-block;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================
   HEADER - Fixed top nav with crimson accent
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(10, 10, 15, 0.92);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson-bright), transparent);
    opacity: 0.6;
}

/* Desktop only: backdrop blur (mobile drawer is fixed - blur traps it) */
@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

main {
    padding-top: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--foreground);
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.brand:hover {
    text-decoration: none;
    color: var(--foreground);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    white-space: nowrap;
}

.brand-accent {
    color: var(--crimson-bright);
    font-style: italic;
}

/* ============================================
   NAVIGATION - Desktop inline, mobile drawer
   ============================================ */
.site-nav {
    display: none;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 0.75rem;
    color: var(--foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff5670;
    background: rgba(225, 14, 46, 0.08);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--crimson-bright);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .site-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
        position: static;
        background: transparent;
    }
}

/* ============================================
   MOBILE MENU - Full-screen drawer
   ============================================ */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile drawer state */
@media (max-width: 1023.98px) {
    .site-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse 80% 40% at 50% 0%, rgba(225, 14, 46, 0.2), transparent 70%);
        padding: var(--space-lg) var(--container-gutter) var(--space-xl);
        overflow-y: auto;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        width: 100%;
    }

    .nav-list li {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        min-height: 52px;
        padding: 0 var(--space-md);
        font-size: 1.0625rem;
        font-family: "Playfair Display", serif;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta-group {
        flex-direction: column;
        gap: 0.625rem;
        margin-top: var(--space-sm);
        width: 100%;
    }

    .nav-cta-group .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }

    .nav-cta-group .nav-login {
        display: inline-flex;
    }
}

/* ============================================
   BUTTONS - Primary scarlet with pulse
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0 1.5rem;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson-bright) 0%, #b8091e 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(225, 14, 46, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff1a3d 0%, var(--crimson-bright) 100%);
    box-shadow: 0 10px 28px rgba(225, 14, 46, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--crimson-bright);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #ff5670;
    border-color: #ff5670;
}

.btn-outline:hover {
    background: #ff5670;
    color: #fff;
}

.btn-lg {
    min-height: 56px;
    padding: 0 2rem;
    font-size: 1.0625rem;
}

.btn-xl {
    min-height: 60px;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-pulse {
    position: relative;
    animation: pulse-aura 3s ease-in-out infinite;
}

@keyframes pulse-aura {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(225, 14, 46, 0.4), 0 0 0 0 rgba(225, 14, 46, 0.5);
    }
    50% {
        box-shadow: 0 6px 24px rgba(225, 14, 46, 0.5), 0 0 0 14px rgba(225, 14, 46, 0);
    }
}

/* ============================================
   HERO - Full-bleed crimson radial backdrops
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    overflow: clip;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 40%, rgba(225, 14, 46, 0.35), transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(139, 10, 26, 0.3), transparent 70%),
        linear-gradient(180deg, #0a0a0f 0%, #16060a 100%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        padding: var(--space-3xl) 0;
    }
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
    }
}

.hero-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(225, 14, 46, 0.12);
    border: 1px solid rgba(225, 14, 46, 0.4);
    border-radius: 99px;
    color: #ffb8c0;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

.hero-title .bonus-numeral {
    display: block;
    font-size: clamp(3rem, 10vw + 1rem, 6rem);
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, #d4d4dc 45%, #8a8a94 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.95;
    letter-spacing: -0.04em;
    filter: drop-shadow(0 8px 24px rgba(225, 14, 46, 0.4));
    margin: 0.25rem 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-item::before {
    content: '✓';
    color: #ff5670;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(225, 14, 46, 0.25);
    border: 1px solid var(--border-strong);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CARDS - Base surface for content groups
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 14, 46, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(225, 14, 46, 0.2);
}

.card-featured {
    border-color: var(--crimson-bright);
    background: linear-gradient(180deg, rgba(225, 14, 46, 0.08), var(--card));
    box-shadow: 0 8px 30px rgba(225, 14, 46, 0.2);
}

@media (min-width: 768px) {
    .card {
        padding: 1.75rem;
    }
}

/* ============================================
   GAME CARD - Slot/provider showcase
   ============================================ */
.game-carousel {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .game-carousel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .game-carousel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.game-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--foreground);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 0;
    min-height: 48px;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--crimson-bright);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(225, 14, 46, 0.35);
    text-decoration: none;
    color: var(--foreground);
}

.game-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #1a0610, #2a0a18);
    overflow: hidden;
}

.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-media img {
    transform: scale(1.05);
}

.game-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    color: rgba(225, 14, 46, 0.5);
}

.game-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    background: var(--platinum);
    color: #0a0a0f;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.game-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, transparent 40%, rgba(225, 14, 46, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-play,
.game-card:focus-visible .game-card-play {
    opacity: 1;
}

.play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--crimson-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
}

.play-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.game-card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--foreground);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-card-provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   CTA BANNER - Full-width crimson conversion
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--container-gutter);
    margin: var(--space-2xl) 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0612 60%, #2a0a18 100%);
    border-top: 1px solid rgba(225, 14, 46, 0.3);
    border-bottom: 1px solid rgba(225, 14, 46, 0.3);
    border-radius: var(--radius-xl);
    overflow: clip;
    isolation: isolate;
    text-align: center;
}

.cta-banner-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(225, 14, 46, 0.35), transparent 70%);
    z-index: -1;
}

.cta-banner-inner {
    max-width: 760px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
}

.cta-highlight {
    display: block;
    font-size: clamp(3rem, 8vw + 1rem, 5.5rem);
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, #d4d4dc 50%, #8a8a94 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0.5rem 0;
    filter: drop-shadow(0 6px 20px rgba(225, 14, 46, 0.5));
}

.cta-banner-subtext {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

.cta-banner-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-3xl) var(--space-xl);
    }
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */
.faq-section {
    max-width: 880px;
    margin: 0 auto;
}

.faq-section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(225, 14, 46, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(225, 14, 46, 0.1);
}

.faq-item[open] .faq-question {
    border-left: 3px solid var(--crimson-bright);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    min-height: 56px;
    font-family: "Playfair Display", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(225, 14, 46, 0.05);
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-toggle {
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
    color: var(--platinum-solid);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--platinum-solid);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.faq-answer p {
    margin: 0 0 var(--space-sm);
    color: var(--muted-foreground);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PAYMENT LOGO GRID - Trust tiles
   ============================================ */
.logo-grid-section {
    max-width: 1100px;
    margin: 0 auto;
}

.logo-grid-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.logo-grid-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

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

@media (min-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.logo-tile {
    aspect-ratio: 16 / 9;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.logo-tile:hover {
    transform: translateY(-2px);
    border-color: var(--crimson-bright);
    box-shadow: 0 10px 24px rgba(225, 14, 46, 0.2);
}

.logo-tile img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(50%) brightness(0.9);
    transition: filter 0.3s ease;
}

.logo-tile:hover img {
    filter: grayscale(0%) brightness(1);
}

.logo-tile-text {
    font-family: "Playfair Display", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--platinum-solid);
    text-align: center;
    letter-spacing: 0.02em;
}

/* ============================================
   BONUS TABLE - Structured comparison
   ============================================ */
.bonus-table-wrapper {
    margin: var(--space-xl) 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bonus-table-caption {
    padding: 1rem 1.5rem;
    margin: 0;
    background: var(--card-elevated);
    font-family: "Playfair Display", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.table-scroll {
    position: relative;
    overflow-x: auto;
    min-width: 0;
    max-width: 100%;
}

.table-scroll:focus {
    outline: 2px solid var(--crimson-bright);
    outline-offset: -2px;
}

.table-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 24px;
    background: linear-gradient(90deg, transparent, rgba(22, 22, 29, 0.9));
    pointer-events: none;
}

@media (min-width: 768px) {
    .table-scroll::after {
        display: none;
    }
}

.bonus-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.bonus-table thead {
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson-bright));
}

.bonus-table th,
.bonus-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.bonus-table thead th {
    font-family: "Playfair Display", serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: none;
}

.bonus-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.bonus-table tbody tr:hover {
    background: rgba(225, 14, 46, 0.06);
}

.bonus-table tbody th {
    font-weight: 600;
    color: var(--foreground);
}

.bonus-table tbody td {
    color: var(--muted-foreground);
}

.bonus-table strong,
.bonus-table .highlight {
    color: #ff5670;
    font-weight: 700;
}

.bonus-table tbody tr:last-child th,
.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   GENERIC CONTENT TABLES (SEO text)
   ============================================ */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 0.9375rem;
}

.content-table thead {
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson-bright));
    color: #fff;
}

.content-table th,
.content-table td {
    padding: 0.875rem 1.125rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.content-table thead th {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.content-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   SEO CONTENT - Long-form text blocks
   ============================================ */
.seo-content {
    max-width: 860px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.seo-content h2 {
    margin-top: var(--space-2xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.seo-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.seo-content h3 {
    margin-top: var(--space-xl);
    color: var(--accent-gold);
}

.seo-content p {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.seo-content ul li,
.seo-content ol li {
    color: var(--muted-foreground);
    margin-bottom: 0.625rem;
}

.seo-content ul li::marker {
    color: #ff5670;
}

.seo-content strong {
    color: var(--foreground);
}

.seo-content a {
    color: #ff5670;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 86, 112, 0.6);
}

.seo-content a:hover {
    color: #ff8095;
    text-decoration-color: #ff8095;
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callouts, stats, pull quotes
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(225, 14, 46, 0.08), rgba(139, 10, 26, 0.04));
    border: 1px solid rgba(225, 14, 46, 0.3);
    border-left: 4px solid var(--crimson-bright);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.tldr-box-title {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ff5670;
    margin-bottom: 0.5rem;
}

.tldr-box p {
    margin: 0;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.65;
}

.callout {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-gold);
    background: rgba(201, 169, 97, 0.08);
    margin: var(--space-lg) 0;
    color: var(--foreground);
}

.callout-tip {
    border-left-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.08);
}

.callout-warning {
    border-left-color: #f43f5e;
    background: rgba(244, 63, 94, 0.08);
}

.callout strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: "Playfair Display", serif;
    color: var(--foreground);
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-width: 0;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 3.75rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #d4d4dc 50%, #8a8a94 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--crimson-bright);
    background: rgba(225, 14, 46, 0.04);
    font-family: "Playfair Display", serif;
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--foreground);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: "Inter Tight", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--crimson-bright);
    background: rgba(225, 14, 46, 0.04);
    color: var(--foreground);
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-style: normal;
}

details.expand {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
}

details.expand summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.expand summary::after {
    content: '+';
    color: var(--crimson-bright);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

details.expand[open] summary::after {
    transform: rotate(45deg);
}

/* ============================================
   TRUST BADGES & PILLS
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: var(--space-lg) 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: 99px;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.badge-age {
    border-color: #ff5670;
    color: #ff5670;
    font-weight: 700;
}

/* ============================================
   FEATURES / HIGHLIGHTS GRID
   ============================================ */
.features-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.feature-item {
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-width: 0;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 14, 46, 0.5);
}

.feature-item p a {
    color: #ff5670;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 86, 112, 0.6);
}

.feature-item p a:hover {
    color: #ff8095;
    text-decoration-color: #ff8095;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 14, 46, 0.2), rgba(139, 10, 26, 0.1));
    border: 1px solid rgba(225, 14, 46, 0.3);
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--crimson-bright);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #050508;
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson-bright), transparent);
    opacity: 0.6;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: var(--space-2xl);
    }
}

.footer-brand-col .brand-footer {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    max-width: 360px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-heading {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #ff5670;
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-responsible {
    max-width: var(--container-max);
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--container-gutter);
    border-top: 1px solid var(--border);
}

.footer-responsible p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    line-height: 1.6;
    text-align: center;
}

.footer-responsible a {
    color: #ff5670;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-md) auto 0;
    padding: var(--space-md) var(--container-gutter) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs li {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li + li::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--crimson-bright);
}

.breadcrumbs a {
    color: var(--muted-foreground);
}

.breadcrumbs a:hover {
    color: #ff5670;
}

.breadcrumbs [aria-current="page"] {
    color: var(--foreground);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-crimson { color: #ff5670; }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--muted-foreground); }
.mb-0 { margin-bottom: 0; }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   COMPACT HERO - for technical / FAQ pages
   ============================================ */
.hero-compact {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.hero-inner-single {
    grid-template-columns: 1fr !important;
    max-width: 820px;
}

.hero-compact .hero-title {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
}

.faq-article h2 {
    color: var(--foreground);
    font-size: clamp(1.375rem, 1.5vw + 0.875rem, 1.625rem);
}

.faq-article h2:first-of-type {
    margin-top: var(--space-lg);
}