/* ============================================
   YEP CASINO - Design System
   Neon HUD-tech aesthetic: dark backgrounds,
   electric magenta/cyan accents, Rajdhani + Exo 2
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

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

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

input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

section {
    overflow: clip;
}

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    border-radius: var(--radius);
    z-index: 10000;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 8px;
    color: var(--primary-foreground);
}

/* ============================================
   TYPOGRAPHY - Rajdhani headings, Exo 2 body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 21px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

/* Glow stat numbers - used in hero sections */
.stat-glow {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--foreground);
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
}

@media (min-width: 1024px) {
    .stat-glow { font-size: 64px; }
}

.stat-glow-cyan {
    text-shadow: 0 0 20px var(--secondary-glow), 0 0 40px var(--secondary-glow);
}

.stat-glow-green {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
}

/* Body text */
.body-text, .seo-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .body-text, .seo-content { font-size: 17px; }
}

/* ============================================
   LAYOUT - Containers & spacing
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

.section {
    padding: var(--section-gap) 0;
}

@media (min-width: 1024px) {
    .section { padding: var(--section-gap-desktop) 0; }
}

.section-header {
    margin-bottom: 32px;
    text-align: center;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .section-header { margin-bottom: 48px; }
}

/* Full-bleed sections */
.full-bleed {
    width: 100%;
}

/* ============================================
   HEADER - Fixed glassmorphism sticky header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(12, 14, 22, 0.85);
    border-bottom: 1px solid var(--neon-edge);
    transition: background 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.site-header.scrolled {
    background: rgba(12, 14, 22, 0.96);
    border-bottom-color: var(--primary);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--primary);
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions-mobile {
    display: none;
}

/* Header action buttons */
.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

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

    .nav-actions-mobile {
        display: none;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
    gap: 5px;
    padding: 10px;
}

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

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

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

/* Mobile Nav Drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        flex-direction: column;
        overflow-y: auto;
        padding: 24px 16px;
    }

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

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

    .nav-item {
        border-bottom: 1px solid var(--neon-edge);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        font-size: 18px;
        padding: 14px 8px;
        color: var(--foreground);
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--neon-edge);
    }

    .nav-actions-mobile .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Spacer for fixed header */
main {
    padding-top: var(--header-height);
}

/* ============================================
   BUTTONS - Primary magenta, ghost cyan, variants
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    line-height: 1.2;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 15px;
}

.btn-md {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .btn-lg {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Primary - solid magenta gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff3c88);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 6px 24px var(--primary-glow);
    transform: translateY(-2px);
}

/* Ghost - outlined */
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(12, 192, 223, 0.05);
}

/* Ghost cyan - outlined cyan */
.btn-ghost-cyan {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-ghost-cyan:hover {
    background: rgba(12, 192, 223, 0.1);
    color: var(--secondary);
    box-shadow: 0 0 16px var(--secondary-glow);
}

/* Accent - lime green */
.btn-accent {
    background: linear-gradient(135deg, #2bce0e, var(--accent));
    color: var(--accent-foreground);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-accent:hover {
    color: var(--accent-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
}

/* Pulsing glow animation for CTA buttons */
.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px var(--primary-glow); }
    50% { box-shadow: 0 4px 32px var(--primary-glow), 0 0 48px rgba(230, 23, 92, 0.3); }
}

/* ============================================
   CARDS - Neon-edge content containers
   ============================================ */
.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--neon-edge);
    padding: var(--card-padding);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
    .card { padding: var(--card-padding-desktop); }
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-edge-hover);
    box-shadow: 0 8px 32px rgba(230, 23, 92, 0.15);
}

.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(230, 23, 92, 0.1);
}

.card-cyan {
    border-color: var(--neon-edge-cyan);
}

.card-cyan:hover {
    border-color: var(--neon-edge-cyan-hover);
    box-shadow: 0 8px 32px rgba(12, 192, 223, 0.15);
}

/* ============================================
   GAME CARD - Casino game tile with hover overlay
   ============================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
}

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

@media (min-width: 1024px) {
    .game-cards-grid { gap: var(--grid-gap-desktop); }
}

.game-cards-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.game-cards-grid.cols-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .game-cards-grid.cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .game-cards-grid.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.game-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--neon-edge);
    overflow: hidden;
    transition: transform 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
    min-width: 0;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-edge-hover);
    box-shadow: 0 8px 24px rgba(230, 23, 92, 0.2);
}

.game-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted);
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--muted), var(--card));
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 14, 22, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-info {
    padding: 14px 16px;
}

@media (min-width: 1024px) {
    .game-card-info { padding: 16px 20px; }
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
}

.game-card-rtp {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--accent);
    margin-left: 8px;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */
.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--neon-edge);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 16px 0;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    gap: 12px;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    .faq-question { font-size: 20px; }
}

.faq-chevron {
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    width: 20px;
    height: 20px;
}

.faq-toggle[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer-inner {
    padding: 0 0 20px 16px;
    border-left: 2px solid var(--secondary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .faq-answer-inner { font-size: 17px; }
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

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

.faq-answer-inner a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer-inner ul, .faq-answer-inner ol {
    margin: 8px 0;
    padding-left: 20px;
}

.faq-answer-inner li {
    margin-bottom: 4px;
    list-style: disc;
}

.faq-answer-inner ol li {
    list-style: decimal;
}

/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 16px;
    text-align: center;
    background: linear-gradient(135deg, #0a0c14 0%, #1a0a20 40%, #0f0a1a 100%);
}

@media (min-width: 1024px) {
    .cta-banner { padding: 100px 32px; }
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.star-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--foreground);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--foreground);
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .cta-banner-headline { font-size: 36px; }
}

.cta-banner-subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

@media (min-width: 1024px) {
    .cta-banner-subtext { font-size: 17px; }
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-banner-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-banner-micro {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGES ROW - Credibility signals
   ============================================ */
.trust-badges {
    background: var(--muted);
    padding: 24px 16px;
    border-bottom: 1px solid var(--neon-edge);
}

@media (min-width: 1024px) {
    .trust-badges { padding: 32px 32px; }
}

.trust-badges-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
}

@media (min-width: 1024px) {
    .trust-badges-inner {
        justify-content: space-between;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
    min-width: 0;
}

.trust-badge:hover {
    opacity: 1;
}

.trust-badge-stat {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.trust-badge-stat-sub {
    font-size: 16px;
    color: var(--muted-foreground);
}

.trust-badge-18 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #f87171;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #f87171;
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.2;
}

.trust-badge-value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
}

/* ============================================
   INFO TABLE - Data comparison tables
   ============================================ */
.info-table-wrapper {
    border-radius: var(--radius);
    border: 1px solid var(--neon-edge);
    overflow: hidden;
    margin: 24px 0;
}

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

/* A11y: make scrollable regions keyboard-accessible */
.info-table-scroll[tabindex] {
    outline: none;
}

.info-table-scroll[tabindex]:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: -2px;
}

.info-table-caption {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: left;
    padding: 12px 20px;
    background: var(--card);
}

.info-table {
    width: 100%;
    background: var(--card);
    font-family: var(--font-body);
    font-size: 15px;
}

@media (min-width: 1024px) {
    .info-table { font-size: 16px; }
}

.info-table thead th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    padding: 14px 20px;
    white-space: nowrap;
    border-bottom: 2px solid rgba(12, 192, 223, 0.2);
    background: rgba(12, 192, 223, 0.03);
}

.info-table tbody td {
    padding: 14px 20px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

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

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

.info-table-highlight {
    background: rgba(230, 23, 92, 0.05) !important;
    border-left: 3px solid var(--primary);
}

.info-table-highlight td:first-child {
    padding-left: 17px;
}

/* Checkmarks and X marks in tables */
.info-table .check { color: var(--accent); font-weight: 700; }
.info-table .cross { color: var(--destructive); font-weight: 700; }

/* ============================================
   HERO SECTIONS - Full-bleed with cosmic gradients
   ============================================ */
.hero {
    position: relative;
    padding: 48px 16px;
    text-align: center;
    background: linear-gradient(160deg, #0C0E16 0%, #15082a 50%, #0C0E16 100%);
}

@media (min-width: 1024px) {
    .hero { padding: 80px 32px 100px; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--foreground);
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    line-height: 1;
}

@media (min-width: 1024px) {
    .hero-stat-number { font-size: 64px; }
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 16px auto 32px;
    max-width: 600px;
}

@media (min-width: 1024px) {
    .hero-subtitle { font-size: 18px; }
}

/* ============================================
   SEO CONTENT - Long-form text blocks
   ============================================ */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .seo-content { padding: 0 24px; }
}

.seo-content h2 {
    margin: 48px 0 20px;
    font-size: 24px;
}

.seo-content h3 {
    margin: 36px 0 16px;
    font-size: 20px;
}

@media (min-width: 1024px) {
    .seo-content h2 { font-size: 30px; }
    .seo-content h3 { font-size: 24px; }
}

.seo-content p {
    margin-bottom: 16px;
    color: var(--foreground);
}

.seo-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content ul, .seo-content ol {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.seo-content ul li {
    list-style: disc;
    margin-bottom: 6px;
    padding-left: 4px;
}

.seo-content ol li {
    list-style: decimal;
    margin-bottom: 6px;
    padding-left: 4px;
}

.seo-content blockquote {
    border-left: 3px solid var(--secondary);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(12, 192, 223, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.seo-content blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS - Callouts, stats, etc.
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
}

@media (min-width: 1024px) {
    .summary-box { padding: 28px; }
}

.summary-box-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-box p {
    margin-bottom: 8px;
}

.summary-box p:last-child {
    margin-bottom: 0;
}

/* Callout / highlight box */
.callout {
    border-left: 4px solid var(--primary);
    background: rgba(230, 23, 92, 0.05);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.callout-info {
    border-left-color: var(--secondary);
    background: rgba(12, 192, 223, 0.05);
}

.callout-success {
    border-left-color: var(--accent);
    background: rgba(57, 255, 20, 0.04);
}

.callout-warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.callout-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: 8px;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 32px 20px;
    margin: 24px 0;
}

.stat-highlight-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 16px var(--primary-glow);
    line-height: 1;
}

.stat-highlight-label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

.stat-highlight-source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    padding: 32px 20px;
    margin: 32px 0;
    border-top: 1px solid var(--neon-edge);
    border-bottom: 1px solid var(--neon-edge);
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .pull-quote { font-size: 28px; }
}

.pull-quote cite {
    display: block;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Styled details/summary */
details.styled-details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 16px 0;
    overflow: hidden;
}

details.styled-details summary {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    color: var(--foreground);
    list-style: none;
}

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

details.styled-details summary::after {
    content: '+';
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

details.styled-details[open] summary::after {
    content: '−';
}

details.styled-details .details-content {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   CRO PATTERNS - Conversion optimization
   ============================================ */

/* CTA Section (inline, not full-bleed) */
.cta-section {
    background: var(--card);
    border: 1px solid var(--neon-edge);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
}

@media (min-width: 1024px) {
    .cta-section { padding: 56px 40px; }
}

/* Comparison table highlighted column */
.info-table .recommended {
    background: rgba(230, 23, 92, 0.08);
}

.info-table .recommended-header {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Social proof / review cards */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.review-card-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 8px;
}

.review-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 12px;
}

.review-card-author {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   GRIDS - Responsive layout systems
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--grid-gap);
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap-desktop); }
}

.grid-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--grid-gap);
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap-desktop); }
}

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

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

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

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

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

@media (min-width: 768px) {
    .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--grid-gap-desktop); }
}

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

/* Fix orphan row for grid-5 on mobile: last child spans full width when odd count */
.grid-5 > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .grid-5 > *:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

/* Horizontal scroll carousel for mobile */
.scroll-row {
    display: flex;
    gap: var(--grid-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.scroll-row::-webkit-scrollbar {
    height: 4px;
}

.scroll-row::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 2px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.scroll-row > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 220px;
    max-width: 300px;
}

@media (min-width: 1024px) {
    .scroll-row {
        overflow-x: visible;
        flex-wrap: wrap;
    }
    .scroll-row > * {
        min-width: 0;
        max-width: none;
        flex: 1 1 0;
    }
}

/* ============================================
   NAVIGATION CARDS - Internal linking
   ============================================ */
.nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--neon-edge);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(12, 192, 223, 0.15);
    color: var(--foreground);
}

.nav-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.nav-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.nav-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   VIP TIERS - Progression visual
   ============================================ */
.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .vip-tiers {
        flex-direction: row;
        align-items: flex-end;
        gap: 8px;
        justify-content: center;
    }
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    transition: border-color 0.3s ease;
    min-width: 0;
}

@media (min-width: 768px) {
    .vip-tier {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        flex: 1;
        min-width: 0;
    }
}

.vip-tier:hover {
    border-color: var(--primary);
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}

.vip-tier-cashback {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.vip-tier-label {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER LOGOS - Carousel / grid
   ============================================ */
.provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: var(--radius);
    padding: 12px 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

.provider-logo:hover {
    opacity: 1;
}

/* ============================================
   PAYMENT METHOD CARDS
   ============================================ */
.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.payment-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.payment-card-featured {
    border-color: var(--primary);
}

.payment-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.payment-card-detail {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   CATEGORY TABS / PILLS
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
    height: 0;
}

.category-tab {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.category-tab:hover {
    color: var(--foreground);
    border-color: var(--secondary);
}

.category-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* ============================================
   PROMO CODE BOX
   ============================================ */
.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 192, 223, 0.08);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
}

/* ============================================
   COMPARISON CALLOUT - Side by side
   ============================================ */
.comparison-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.comparison-side {
    padding: 24px;
}

.comparison-side-bad {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid var(--destructive);
}

.comparison-side-good {
    background: rgba(57, 255, 20, 0.04);
    border-left: 3px solid var(--accent);
}

.comparison-side h3 {
    margin-bottom: 16px;
}

.comparison-side ul {
    padding-left: 0;
}

.comparison-side li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================
   STEP INDICATORS - Numbered process
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        gap: 20px;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .step { flex-direction: column; text-align: center; align-items: center; }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff3c88);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3,
.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

@media (min-width: 1024px) {
    .step-content h3,
    .step-content h4 {
        font-size: 20px;
    }
}

.step-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

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

/* Staggered children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   FOOTER - Multi-column dark footer
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--neon-edge);
    padding: 48px 16px 24px;
}

@media (min-width: 1024px) {
    .site-footer { padding: 64px 32px 32px; }
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

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

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.footer-badge svg {
    flex-shrink: 0;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--destructive);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--destructive);
    flex-shrink: 0;
}

/* Footer payments */
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-payments-label {
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted);
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-logo-text:hover {
    opacity: 1;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   FLOW PAGE - Minimal redirect page
   ============================================ */
.flow-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--background);
    text-align: center;
    padding: 20px;
}

.flow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flow-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.flow-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--muted-foreground);
}

.flow-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: flow-pulse 1.5s ease-in-out infinite;
}

@keyframes flow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.flow-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

/* ============================================
   BONUS PAGE - Hero steps, Wheel versions
   ============================================ */

/* Bonus Hero Steps Visual */
.bonus-hero {
    padding: 56px 16px 64px;
    background: linear-gradient(160deg, #0C0E16 0%, #200a32 30%, #1a0820 60%, #0C0E16 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .bonus-hero {
        padding: 80px 32px 100px;
        min-height: 70vh;
    }
}

.bonus-steps-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px 0 16px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .bonus-steps-hero {
        gap: 12px;
        flex-wrap: nowrap;
    }
}

.bonus-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bonus-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff3c88);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary-glow);
}

.bonus-step-detail {
    text-align: center;
}

.bonus-step-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .bonus-step-amount { font-size: 28px; }
}

.bonus-step-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
}

.bonus-step-connector {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    flex-shrink: 0;
    margin-top: -24px;
}

@media (max-width: 479px) {
    .bonus-step-connector {
        width: 16px;
    }
}

/* Wheel of Fortune versions */
.wheel-card-header {
    margin-bottom: 8px;
}

.wheel-versions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .wheel-versions {
        flex-direction: row;
        gap: 16px;
    }
}

.wheel-version {
    flex: 1;
    background: var(--muted);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.wheel-version:hover {
    border-color: var(--secondary);
}

.wheel-version-vip {
    border-color: rgba(230, 23, 92, 0.4);
    background: rgba(230, 23, 92, 0.05);
}

.wheel-version-vip:hover {
    border-color: var(--primary);
}

.wheel-version-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.wheel-version-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.wheel-version-prizes {
    line-height: 1.5;
}

/* ============================================
   HOME PAGE - Hero, No-Deposit, Live Preview, Sportsbook
   ============================================ */

/* Home Hero extended styles */
.home-hero {
    padding: 56px 16px 64px;
    background: linear-gradient(160deg, #0C0E16 0%, #1a082e 35%, #180a24 65%, #0C0E16 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .home-hero {
        padding: 80px 32px 100px;
        min-height: 70vh;
    }
}

.home-hero .hero-content {
    width: 100%;
}

.hero-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .hero-cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-micro-text {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    text-align: center;
}

/* No-Deposit Cards */
.no-dep-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.no-dep-icon {
    font-size: 36px;
    line-height: 1;
}

.no-dep-features {
    margin: 16px 0 24px;
    padding: 0;
}

.no-dep-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--foreground);
    padding: 6px 0;
}

.no-dep-steps {
    display: flex;
    gap: 12px;
    margin: 20px 0 24px;
    justify-content: center;
}

.no-dep-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

.step-number-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff3c88);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Live Casino Preview Cards */
.live-preview-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--neon-edge);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.live-preview-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-edge-hover);
    box-shadow: 0 8px 24px rgba(230, 23, 92, 0.2);
}

.live-preview-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 400 / 260;
    object-fit: cover;
}

.live-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(12, 14, 22, 0.9));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.live-preview-overlay h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.live-preview-provider {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Home Live Casino section background */
.home-live-casino {
    background: linear-gradient(180deg, var(--background) 0%, rgba(26, 8, 46, 0.3) 50%, var(--background) 100%);
}

/* Sportsbook Banner */
.sportsbook-banner {
    background: var(--card);
    border: 1px solid var(--neon-edge);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sportsbook-banner-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 24px;
}

@media (min-width: 768px) {
    .sportsbook-banner-content {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 40px 32px;
    }
}

.sportsbook-info h2 {
    margin-bottom: 12px;
}

.sportsbook-features {
    margin: 20px 0 24px;
    padding: 0;
}

.sportsbook-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--foreground);
}

.sport-icon {
    font-size: 20px;
    line-height: 1;
}

.sportsbook-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sportsbook-visual img {
    max-width: 340px;
    width: 100%;
    height: auto;
}

/* Payment Methods Row (home grid) */
.payment-methods-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

@media (min-width: 1024px) {
    .payment-methods-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

/* ============================================
   SPIELE PAGE - Game Library Specific Styles
   ============================================ */

/* Spiele Hero extended */
.spiele-hero {
    padding: 56px 16px 64px;
    background: linear-gradient(160deg, #0C0E16 0%, #0f1a2e 35%, #1a0a28 65%, #0C0E16 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .spiele-hero {
        padding: 80px 32px 100px;
        min-height: 70vh;
    }
}

.spiele-hero .hero-content {
    width: 100%;
}

.spiele-hero-tabs {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.spiele-hero-tabs .category-tabs {
    justify-content: center;
    flex-wrap: nowrap;
}

/* Classics Section */
.spiele-classics-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(20, 12, 32, 0.4) 50%, var(--background) 100%);
}

/* Insta Game Cards */
.insta-game-card {
    text-align: center;
    min-width: 200px;
    max-width: 240px;
}

.insta-card-header {
    margin-bottom: 12px;
}

.insta-card-icon {
    font-size: 40px;
    margin-bottom: 8px;
    line-height: 1;
}

.insta-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2px;
}

.insta-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.insta-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Jackpot Section */
.spiele-jackpot-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(26, 16, 8, 0.25) 50%, var(--background) 100%);
}

.jackpot-counter {
    text-align: center;
    padding: 32px 20px;
}

.jackpot-counter-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.jackpot-counter-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 24px var(--accent-glow), 0 0 48px var(--accent-glow);
    line-height: 1;
}

@media (min-width: 1024px) {
    .jackpot-counter-amount { font-size: 64px; }
}

.jackpot-counter-note {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* Demo Mode Card */
.demo-mode-card {
    background: var(--card);
    border: 1px solid var(--neon-edge);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .demo-mode-card { padding: 48px 40px; }
}

.demo-mode-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .demo-mode-grid {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
}

.demo-mode-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-badge-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: var(--muted);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--secondary);
    position: relative;
}

.demo-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(12, 192, 223, 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid var(--secondary);
    letter-spacing: 2px;
}

/* Mobile label variant with sufficient contrast on primary-tinted backgrounds */
.demo-label-mobile {
    color: #ff6b9d;
    background: rgba(230, 23, 92, 0.15);
    border-color: #ff6b9d;
}

.demo-slot-icon {
    font-size: 56px;
    line-height: 1;
}

.demo-slot-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

.demo-mode-content h2 {
    margin-bottom: 16px;
}

/* Feeling Lucky Card */
.feeling-lucky-card {
    background: var(--card);
    border: 1px solid var(--neon-edge-cyan);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.feeling-lucky-card:hover {
    border-color: var(--neon-edge-cyan-hover);
}

@media (min-width: 1024px) {
    .feeling-lucky-card { padding: 56px 40px; }
}

.feeling-lucky-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.feeling-lucky-card h2 {
    margin-bottom: 12px;
}

/* ============================================
   LIVE CASINO PAGE - Hero, Category Cards, Provider Cards
   ============================================ */

/* Live Hero */
.live-hero {
    padding: 56px 16px 64px;
    background: linear-gradient(160deg, #0C0E16 0%, #1a0a1e 30%, #200e1a 60%, #0C0E16 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .live-hero {
        padding: 80px 32px 100px;
        min-height: 70vh;
    }
}

.live-hero .hero-content {
    width: 100%;
}

/* Light beam effects for live hero */
.live-hero-ambience {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 120%;
    background: linear-gradient(180deg, transparent, rgba(230, 23, 92, 0.08), transparent);
    transform: rotate(15deg);
    animation: beam-drift 8s ease-in-out infinite;
}

.light-beam-1 {
    left: 15%;
    top: -10%;
    animation-delay: 0s;
}

.light-beam-2 {
    left: 55%;
    top: -10%;
    animation-delay: 2.5s;
    background: linear-gradient(180deg, transparent, rgba(12, 192, 223, 0.06), transparent);
}

.light-beam-3 {
    left: 85%;
    top: -10%;
    animation-delay: 5s;
    background: linear-gradient(180deg, transparent, rgba(230, 23, 92, 0.05), transparent);
}

@keyframes beam-drift {
    0%, 100% { opacity: 0.3; transform: rotate(15deg) translateX(0); }
    50% { opacity: 0.7; transform: rotate(15deg) translateX(20px); }
}

/* Live Category Cards */
.live-category-card {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--neon-edge);
    transition: transform 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
    text-decoration: none;
    background: var(--card);
}

.live-category-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-edge-hover);
    box-shadow: 0 8px 32px rgba(230, 23, 92, 0.2);
    color: var(--foreground);
}

.live-category-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.live-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.live-category-card:hover .live-category-img img {
    transform: scale(1.05);
}

.live-category-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 1024px) {
    .live-category-info { padding: 20px; }
}

.live-category-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

@media (min-width: 1024px) {
    .live-category-info h3 { font-size: 24px; }
}

.live-category-variants {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
}

.live-category-range {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}

.live-category-provider {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
}

/* Live Provider Cards */
.live-provider-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 200px;
    max-width: 260px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.live-provider-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.live-provider-featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(230, 23, 92, 0.1);
}

.live-provider-featured:hover {
    border-color: var(--neon-edge-hover);
    box-shadow: 0 0 24px rgba(230, 23, 92, 0.2);
}

.live-provider-icon {
    font-size: 32px;
    line-height: 1;
}

.live-provider-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.live-provider-games {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

.live-provider-sig {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Live Roulette section background */
.live-roulette-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(26, 10, 16, 0.2) 50%, var(--background) 100%);
}

/* ============================================
   ZAHLUNGEN PAGE - Payment Methods Specific Styles
   ============================================ */

/* Zahlungen Hero */
.zahlungen-hero {
    padding: 56px 16px 64px;
    background: linear-gradient(160deg, #0C0E16 0%, #0a1a2e 35%, #0e1a28 65%, #0C0E16 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .zahlungen-hero {
        padding: 80px 32px 100px;
        min-height: 70vh;
    }
}

.zahlungen-hero .hero-content {
    width: 100%;
}

/* Payment Methods Grid */
.zahlungen-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 768px) {
    .zahlungen-methods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .zahlungen-methods-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 20px;
    }
}

.zahlungen-method-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
    .zahlungen-method-card {
        padding: 28px 20px;
    }
}

.zahlungen-method-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(12, 192, 223, 0.15);
}

.zahlungen-method-featured {
    border-color: var(--neon-edge-hover);
    box-shadow: 0 0 16px rgba(230, 23, 92, 0.1);
}

.zahlungen-method-featured:hover {
    border-color: var(--neon-edge-hover);
    box-shadow: 0 8px 24px rgba(230, 23, 92, 0.2);
}

.zahlungen-method-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
}

.zahlungen-method-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.zahlungen-method-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zahlungen-detail {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.zahlungen-detail-free {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    margin-top: 4px;
}

/* Min Deposit Section */
.zahlungen-min-deposit {
    background: var(--card);
    border: 1px solid var(--neon-edge);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.zahlungen-min-deposit-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .zahlungen-min-deposit-inner {
        grid-template-columns: 200px 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
}

.zahlungen-min-deposit-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.zahlungen-min-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 24px var(--accent-glow), 0 0 48px var(--accent-glow);
    line-height: 1;
}

@media (min-width: 1024px) {
    .zahlungen-min-amount {
        font-size: 72px;
    }
}

.zahlungen-min-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zahlungen-min-deposit-content p {
    color: var(--foreground);
    line-height: 1.6;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .zahlungen-min-deposit-content p {
        font-size: 17px;
    }
}

.zahlungen-min-deposit-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   FAQ PAGE - Intro, Breadcrumb, Responsible Gambling
   ============================================ */

/* FAQ Intro Section */
.faq-intro-section {
    padding-top: 32px;
}

@media (min-width: 1024px) {
    .faq-intro-section {
        padding-top: 48px;
    }
}

.faq-intro-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .faq-intro-text {
        font-size: 17px;
    }
}

/* FAQ Breadcrumb */
.faq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.faq-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-breadcrumb a:hover {
    color: var(--foreground);
}

.faq-breadcrumb-sep {
    color: var(--muted-foreground);
    opacity: 0.5;
}

/* Responsible Gambling Card */
.responsible-gambling-card {
    background: var(--card);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

@media (min-width: 1024px) {
    .responsible-gambling-card {
        padding: 36px 32px;
    }
}

.rg-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.rg-header-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #f59e0b;
}

@media (min-width: 1024px) {
    .rg-header-text {
        font-size: 20px;
    }
}

.responsible-gambling-card > p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 16px;
}

.rg-tools-list {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.rg-tools-list li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--foreground);
    padding-left: 4px;
}

.rg-tools-list li strong {
    color: #fbbf24;
}

.rg-help-links {
    background: rgba(245, 158, 11, 0.06);
    border-left: 3px solid #f59e0b;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin-top: 20px;
}

.rg-help-links p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.rg-help-links ul {
    padding-left: 0;
}

.rg-help-links li {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 4px;
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: #ff6b9d; }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Neon divider line */
.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    border: none;
    margin: 40px 0;
    opacity: 0.5;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.badge-primary {
    background: rgba(230, 23, 92, 0.2);
    color: #ff6b9d;
}

.badge-secondary {
    background: rgba(12, 192, 223, 0.15);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(57, 255, 20, 0.15);
    color: var(--accent);
}

/* Responsive hide helpers */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hide-tablet { display: none !important; }
}

@media (min-width: 1024px) {
    .hide-desktop { display: none !important; }
}

/* ============================================
   A11Y: Inline link distinguishability fix
   ============================================ */
.text-muted a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.callout a,
.callout-info a,
.callout-success a,
.callout-warning a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.container p a,
.container li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
