/* ============================================
   YEP CASINO - Design System
   Urban Graffiti × Steampunk Fusion
   Mobile-first · Dark theme default
   ============================================ */

/* ============================================
   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: "Exo 2", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}

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

/* ============================================
   TYPOGRAPHY - Russo One + Exo 2
   Industrial headlines, modern body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Russo One", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.15;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.25;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.3;
}

.text-body {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.text-secondary {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--muted-foreground);
}

.text-small {
    font-size: 14px;
    line-height: 1.5;
}

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

/* ============================================
   LAYOUT - Container & Spacing
   Max 1140px content, full-bleed sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section {
    padding: 48px 0;
    overflow: clip;
    position: relative;
}

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

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.section-heading::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    transform: skewX(-20deg);
}

/* ============================================
   HEADER - Fixed sticky, 64px mobile / 72px desktop
   z-index: 1000
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .site-header {
        height: 72px;
    }
}

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

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

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

.logo-icon {
    font-family: "Russo One", sans-serif;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 0.04em;
    line-height: 1;
}

.logo-text {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    color: var(--foreground);
    letter-spacing: 0.06em;
    line-height: 1;
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--muted);
}

/* Header Action Buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.btn-login {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s ease, color 0.2s ease;
    min-height: 40px;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-register {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-foreground);
    background: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 40px;
    box-shadow: 0 0 12px rgba(181, 245, 80, 0.3);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(181, 245, 80, 0.5);
    color: var(--primary-foreground);
}

/* Mobile Toggle - z-index: 1001 */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

/* Mobile Nav Drawer - z-index: 999 */
.main-nav.is-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    flex-direction: column;
    overflow-y: auto;
    padding: 24px 20px 100px;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
}

.main-nav.is-open .nav-link {
    font-size: 18px;
    padding: 14px 16px;
    min-height: 52px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
}

.main-nav.is-open::after {
    content: '';
    display: block;
    padding: 16px 0;
}

/* Mobile CTA inside drawer */
.mobile-drawer-cta {
    display: none;
}

.main-nav.is-open .mobile-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.main-nav.is-open .mobile-drawer-cta .btn-register {
    justify-content: center;
    padding: 14px 24px;
    font-size: 16px;
    min-height: 52px;
}

.main-nav.is-open .mobile-drawer-cta .btn-login {
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    min-height: 48px;
}

/* Body padding for fixed header */
body {
    padding-top: 64px;
}

@media (min-width: 1024px) {
    body {
        padding-top: 72px;
    }
}

/* ============================================
   BUTTONS - Primary CTA system
   Neon lime with idle glow pulse
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-foreground);
    background: var(--primary);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 0 16px rgba(181, 245, 80, 0.3);
    animation: ctaPulse 2.5s ease-in-out infinite;
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(181, 245, 80, 0.55);
    color: var(--primary-foreground);
    animation: none;
}

.btn-cta:active {
    transform: translateY(0);
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 16px rgba(181, 245, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 24px rgba(181, 245, 80, 0.45);
    }
}

.btn-cta-full {
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    text-decoration: none;
    min-height: 48px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

/* ============================================
   BONUS CARD - Offer display with CTA
   Copper border, neon lime value, charcoal bg
   ============================================ */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.bonus-cards-grid--4 {
    grid-template-columns: 1fr;
}

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

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

.bonus-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.bonus-card-slash {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    opacity: 0.08;
    transform: rotate(45deg);
    pointer-events: none;
}

.bonus-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #c4224f;
    border-radius: 4px;
    z-index: 2;
}

.bonus-card-img {
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
}

.bonus-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-card-title {
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 8px;
    line-height: 1.25;
}

@media (min-width: 1024px) {
    .bonus-card-title {
        font-size: 20px;
    }
}

.bonus-card-value {
    font-family: "Russo One", sans-serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.1;
}

.bonus-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.bonus-tag {
    display: inline-flex;
    padding: 4px 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 20px;
    white-space: nowrap;
}

.bonus-card-slot {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.bonus-card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    flex-grow: 1;
}

.bonus-card-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* ============================================
   GAME CARD - Slot/game tile with hover overlay
   Square, 8px radius, provider name
   ============================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

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

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

.game-card {
    display: block;
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    min-width: 0;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.game-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 2px solid var(--secondary);
}

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

.game-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--muted) 0%, var(--card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(181, 245, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
}

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

.game-card-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.game-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #c4224f;
    border-radius: 4px;
}

.game-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-card-title {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .game-card-title {
        font-size: 16px;
    }
}

.game-card-provider {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   Charcoal bars, copper chevron, lime accent
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    min-height: 52px;
    gap: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.faq-question:hover {
    color: var(--primary);
}

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

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

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

.faq-answer {
    overflow: hidden;
}

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

.faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
    border-left: 3px solid var(--primary);
    margin-left: 16px;
    padding-left: 16px;
}

@media (min-width: 1024px) {
    .faq-answer-inner {
        font-size: 16px;
        padding: 0 20px 20px;
        margin-left: 20px;
        padding-left: 20px;
    }
}

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

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

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

.faq-answer-inner a:hover {
    color: var(--secondary);
}

/* ============================================
   CTA BANNER - Full-width conversion section
   Charcoal gradient, gear texture, lime glow
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--card) 0%, var(--background) 40%, var(--card) 100%);
    padding: 40px 0;
    position: relative;
    overflow: clip;
    text-align: center;
}

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

.cta-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-banner-bg-gear {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--border);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.cta-banner-bg-gear::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    border: 2px solid var(--border);
    border-radius: 50%;
}

.cta-banner-headline {
    font-size: clamp(22px, 4vw, 34px);
    color: var(--foreground);
    margin-bottom: 12px;
}

.cta-banner-subline {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-banner-btn {
    margin-bottom: 12px;
}

@media (max-width: 479px) {
    .cta-banner-btn {
        width: calc(100% - 40px);
        max-width: 400px;
    }
}

.cta-banner-micro {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST STATS ROW - Key metrics in a row
   Neon lime numbers, charcoal bg
   ============================================ */
.trust-stats {
    background: var(--card);
    padding: 32px 0;
    overflow: clip;
    position: relative;
}

@media (min-width: 1024px) {
    .trust-stats {
        padding: 48px 0;
    }
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, rgba(181, 245, 80, 0.03) 50%, transparent 55%);
    pointer-events: none;
}

.trust-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .trust-stats-inner {
        display: flex;
        justify-content: center;
        gap: 0;
    }
}

.trust-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .trust-stat-item {
        flex: 1;
        padding: 8px 20px;
        border-right: 1px solid var(--border);
    }

    .trust-stat-item:last-child {
        border-right: none;
    }
}

.trust-stat-value {
    font-family: "Russo One", sans-serif;
    font-size: 26px;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

@media (min-width: 1024px) {
    .trust-stat-value {
        font-size: 36px;
    }
}

.trust-stat-label {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .trust-stat-label {
        font-size: 15px;
    }
}

.trust-stats-source {
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-style: italic;
    color: var(--muted-foreground);
    padding: 12px 20px 0;
    max-width: 1140px;
    margin: 0 auto;
}

/* ============================================
   HERO - Full-bleed hero sections
   Layered backgrounds, mascot, CTA
   ============================================ */
.hero {
    position: relative;
    overflow: clip;
    padding: 56px 0 48px;
    background: var(--card);
    min-height: 380px;
    display: flex;
    align-items: center;
}

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

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-inner {
        padding: 0 32px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.92) 0%, rgba(36, 40, 47, 0.85) 50%, rgba(26, 29, 35, 0.95) 100%);
}

/* Decorative gear silhouettes */
.hero-gear {
    position: absolute;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-gear-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
}

.hero-gear-2 {
    width: 120px;
    height: 120px;
    bottom: 20px;
    left: -30px;
}

/* Spray paint slash decoration */
.hero-slash {
    position: absolute;
    width: 300px;
    height: 8px;
    background: var(--primary);
    opacity: 0.15;
    transform: rotate(-25deg);
    top: 30%;
    right: -50px;
    pointer-events: none;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero h1 .highlight {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-family: "Exo 2", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.hero-trust-line {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.hero-trust-line span {
    margin: 0 4px;
}

.hero .btn-cta {
    font-size: 15px;
    padding: 16px 32px;
}

@media (max-width: 479px) {
    .hero .btn-cta {
        width: 100%;
    }
}

.hero-badge {
    display: inline-block;
    padding: 5px 14px;
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #c4224f;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Hero mascot area on desktop */
.hero-mascot {
    display: none;
}

@media (min-width: 768px) {
    .hero-mascot {
        display: block;
        position: absolute;
        right: 32px;
        bottom: 0;
        z-index: 1;
        max-width: 320px;
    }

    .hero-mascot img {
        max-height: 400px;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-mascot {
        right: 60px;
        max-width: 380px;
    }

    .hero-mascot img {
        max-height: 460px;
    }
}

/* ============================================
   SEO CONTENT - Long-form text sections
   Tables, lists, callouts inside articles
   ============================================ */
.seo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px;
}

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

@media (min-width: 1280px) {
    .seo-content {
        padding: 80px 16px;
    }
}

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.seo-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    max-width: 75ch;
}

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

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

.seo-content a:hover {
    color: var(--secondary);
}

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

.seo-content ul li,
.seo-content ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

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

.seo-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.seo-content ol {
    counter-reset: seo-ol;
}

.seo-content ol li::before {
    counter-increment: seo-ol;
    content: counter(seo-ol) '.';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-family: "Russo One", sans-serif;
    font-size: 14px;
}

/* Tables in SEO content */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.seo-content table,
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    min-width: 500px;
}

.seo-content table thead th,
.data-table thead th {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.dark .seo-content table thead th,
.dark .data-table thead th {
    color: #1a1a1a;
}

.seo-content table tbody td,
.data-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.seo-content table tbody tr:nth-child(even),
.data-table tbody tr:nth-child(even) {
    background: var(--muted);
}

.seo-content table tbody tr:nth-child(odd),
.data-table tbody tr:nth-child(odd) {
    background: var(--card);
}

.table-highlight {
    border-left: 3px solid var(--primary);
}

/* ============================================
   CALLOUT BOX - Tips, warnings, key info
   Copper border, subtle background
   ============================================ */
.callout-box {
    position: relative;
    padding: 20px 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary);
    background: var(--card);
    border-radius: 0 8px 8px 0;
}

.callout-box-primary {
    border-left-color: var(--primary);
}

.callout-box-accent {
    border-left-color: var(--accent);
}

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

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

/* Ensure links inside callout boxes are distinguishable */
.callout-box a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   SUMMARY / TL;DR BOX
   Key takeaways near page top
   ============================================ */
.summary-box {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 32px;
    position: relative;
}

.summary-box::before {
    content: 'TL;DR';
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 2px 10px;
    font-family: "Russo One", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-foreground);
    background: var(--primary);
    border-radius: 4px;
}

.summary-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--foreground);
}

/* ============================================
   PULL QUOTE - Oversized quote text
   ============================================ */
.pull-quote {
    padding: 24px 0;
    margin: 32px 0;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.pull-quote blockquote {
    font-family: "Russo One", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--foreground);
    line-height: 1.3;
    text-transform: uppercase;
}

.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-style: italic;
    color: var(--muted-foreground);
}

/* ============================================
   STAT HIGHLIGHT - Prominent number display
   ============================================ */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.stat-highlight-value {
    font-family: "Russo One", sans-serif;
    font-size: 40px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-highlight-label {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
}

.stat-highlight-source {
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    font-style: italic;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ============================================
   DETAILS/SUMMARY - Expandable sections
   Zero JS, pure CSS accordion
   ============================================ */
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

details summary {
    padding: 16px 20px;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

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

details summary::after {
    content: '+';
    font-family: "Russo One", sans-serif;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

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

details > div,
details > p {
    padding: 0 20px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   COMPARISON TABLE - Highlighted columns
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table thead th {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 12px 16px;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.dark .comparison-table thead th {
    color: #1a1a1a;
}

.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: var(--foreground);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--muted);
}

.comparison-table tbody tr:nth-child(odd) {
    background: var(--card);
}

.comparison-table .recommended {
    border-left: 3px solid var(--primary);
    background: rgba(181, 245, 80, 0.05);
}

.comparison-table .recommended-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #c4224f;
    border-radius: 3px;
    margin-left: 8px;
}

/* ============================================
   TRUST BADGES ROW - Payment/license logos
   Grayscale, horizontal
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.trust-badge-item {
    opacity: 1;
    transition: color 0.2s ease, border-color 0.2s ease;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.trust-badge-item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   STEPS - Process/how-it-works
   Numbered with connecting line
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--secondary);
    border-style: dashed;
}

.step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .step-number {
    color: #1a1a1a;
}

.step-title {
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--foreground);
}

.step-desc {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .steps-horizontal {
        flex-direction: row;
        padding-left: 0;
        gap: 16px;
    }

    .steps-horizontal::before {
        top: 15px;
        left: 48px;
        right: 48px;
        bottom: auto;
        height: 2px;
        width: auto;
    }

    .steps-horizontal .step-item {
        flex: 1;
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-top: 48px;
    }

    .steps-horizontal .step-number {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}

/* ============================================
   PAYMENT STRIP - Footer payment logos
   ============================================ */
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 4px;
    white-space: nowrap;
}

/* ============================================
   VIP TIERS - Horizontal progression
   ============================================ */
.vip-tiers {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.vip-tier {
    flex: 0 0 auto;
    min-width: 100px;
    padding: 16px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.vip-tier.active {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(181, 245, 80, 0.2);
}

.vip-tier-name {
    font-family: "Russo One", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 4px;
}

.vip-tier-cashback {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   NO LIMITS CALLOUT - GGL vs Yep comparison
   Two-column side by side
   ============================================ */
.no-limits-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.no-limits-col {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.no-limits-col--ggl {
    background: var(--muted);
}

.no-limits-col--yep {
    background: var(--card);
    border-color: var(--primary);
    position: relative;
}

.no-limits-col h3 {
    margin-bottom: 16px;
}

.no-limits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-limits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: var(--foreground);
}

.no-limits-icon-x {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--destructive);
    font-weight: 700;
}

.no-limits-icon-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   PROVIDER SHOWCASE - Logo row
   ============================================ */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.provider-logo-item {
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "Russo One", sans-serif;
    font-size: 13px;
    color: var(--foreground);
    text-transform: uppercase;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.provider-logo-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(205, 136, 68, 0.2);
}

/* ============================================
   PAYMENT FEATURE CARDS - For live casino page
   ============================================ */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.payment-feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    position: relative;
}

.payment-feature-card .payment-name {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.payment-feature-card .payment-speed {
    font-size: 13px;
    color: var(--muted-foreground);
}

.payment-feature-card .payment-min {
    font-size: 13px;
    color: var(--secondary);
}

/* ============================================
   FOOTER - 4-column grid, collapsing on mobile
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 32px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-heading {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Footer Bottom */
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-legal {
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: var(--secondary);
}

.badge-license {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
}

.footer-copyright {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   ANIMATIONS - Scroll reveal & hover
   IntersectionObserver adds .is-visible
   ============================================ */
.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);
}

/* Stagger children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.stagger-children > .animate-on-scroll:nth-child(7) { transition-delay: 480ms; }
.stagger-children > .animate-on-scroll:nth-child(8) { transition-delay: 560ms; }

/* Spray paint slash accent keyframe */
.slash-accent {
    position: relative;
    display: inline;
}

.slash-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -4px;
    height: 40%;
    background: var(--primary);
    opacity: 0.12;
    z-index: -1;
    transform: skewX(-12deg);
}

/* ============================================
   BONUS OHNE EINZAHLUNG PAGE - Graffiti hero accent
   ============================================ */
.hero-boe .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(36, 40, 47, 0.8) 50%, rgba(26, 29, 35, 0.92) 100%);
}

.hero-boe .hero-slash {
    background: var(--accent);
    opacity: 0.18;
    width: 350px;
}

.hero-boe .hero-gear-1 {
    border-color: var(--accent);
    opacity: 0.12;
}

/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued style
   No neon, no flashy CTAs
   ============================================ */
.page-responsible-gambling .hero {
    min-height: 280px;
    background: var(--card);
}

@media (min-width: 1024px) {
    .page-responsible-gambling .hero {
        min-height: 340px;
    }
}

.page-responsible-gambling h1 {
    font-size: clamp(24px, 4vw, 38px);
}

.rg-hero .hero-bg-overlay,
.rg-hero-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.94) 0%, rgba(30, 28, 25, 0.9) 50%, rgba(26, 29, 35, 0.96) 100%);
}

.rg-badge-18 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    font-family: "Russo One", sans-serif;
    font-size: 24px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.rg-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.rg-tool-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.rg-tool-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.rg-tool-name {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2px;
}

.rg-tool-desc {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.rg-help-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rg-help-link {
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.page-responsible-gambling .section p a,
.page-responsible-gambling .callout-box a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rg-help-link a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.rg-help-link p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ============================================
   UNLOCK PAGE - Minimal redirect page
   ============================================ */
.page-unlock {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
}

.unlock-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 40px 20px;
}

.unlock-logo .logo-icon {
    font-size: 36px;
}

.unlock-logo .logo-text {
    font-size: 24px;
}

.unlock-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spinnerRotate 0.8s linear infinite;
}

@keyframes spinnerRotate {
    to {
        transform: rotate(360deg);
    }
}

.unlock-text {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--muted-foreground);
}

.unlock-subtext {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   INTERNAL LINKS GRID - Homepage hub links
   ============================================ */
.internal-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.internal-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.28s ease;
    min-height: 48px;
}

.internal-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}

.internal-link-icon {
    font-size: 28px;
    line-height: 1;
}

.internal-link-title {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.internal-link-desc {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   WILLKOMMENSBONUS PAGE - Steampunk hero accent
   Copper gears, bronze tones
   ============================================ */
.hero-willkommensbonus .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(30, 25, 20, 0.84) 50%, rgba(26, 29, 35, 0.93) 100%);
}

.hero-willkommensbonus .hero-slash {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0.14;
    width: 380px;
}

.hero-willkommensbonus .hero-gear-1 {
    border-color: var(--secondary);
    opacity: 0.14;
    width: 260px;
    height: 260px;
}

.hero-willkommensbonus .hero-gear-2 {
    border-color: var(--secondary);
    opacity: 0.1;
    width: 140px;
    height: 140px;
}

/* Sportsbook bonus sports tags */
.wb-sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wb-sports-tags .bonus-tag {
    font-size: 14px;
    padding: 6px 14px;
}

/* ============================================
   LIVE CASINO PAGE - Mythological hero accent
   Gold/azure palette, marble grand hall
   ============================================ */
.hero-live-casino .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(20, 25, 50, 0.82) 50%, rgba(26, 29, 35, 0.92) 100%);
}

.hero-live-casino .hero-slash {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0.14;
    width: 380px;
}

.hero-live-casino .hero-gear-1 {
    border-color: var(--secondary);
    opacity: 0.14;
    width: 280px;
    height: 280px;
}

.hero-live-casino .hero-gear-2 {
    border-color: var(--secondary);
    opacity: 0.1;
    width: 150px;
    height: 150px;
}

/* Live Casino Provider Grid */
.lc-provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.lc-provider-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.28s ease;
}

.lc-provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.lc-provider-logo {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
    letter-spacing: 0.02em;
}

.lc-provider-games {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-provider-games li {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.lc-provider-games li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Live Casino Category Labels */
.lc-category-label {
    font-family: "Russo One", sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    text-transform: uppercase;
    color: var(--foreground);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.lc-category-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    transform: skewX(-20deg);
}

/* No Limits Badge Inline */
.no-limits-badge-inline {
    display: inline-block;
    padding: 2px 10px;
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #c4224f;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
}

/* ============================================
   FREISPIELE PAGE - Deposit breakdown cards
   Mythological marble/gold hero accent
   ============================================ */
.hero-freispiele .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(20, 25, 45, 0.82) 50%, rgba(26, 29, 35, 0.92) 100%);
}

.hero-freispiele .hero-slash {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.15;
    width: 350px;
}

.hero-freispiele .hero-gear-1 {
    border-color: var(--secondary);
    opacity: 0.12;
    width: 240px;
    height: 240px;
}

.hero-freispiele .hero-gear-2 {
    border-color: var(--primary);
    opacity: 0.08;
}

/* Free spins deposit breakdown grid */
.fs-deposit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.fs-deposit-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fs-deposit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.fs-deposit-header {
    padding: 10px 16px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.dark .fs-deposit-header {
    color: #1a1a1a;
}

.fs-deposit-img {
    width: 100%;
    overflow: hidden;
}

.fs-deposit-img img {
    width: 100%;
    height: auto;
    display: block;
}

.fs-deposit-details {
    padding: 16px 20px 20px;
}

.fs-deposit-slot {
    font-family: "Russo One", sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 8px;
    line-height: 1.25;
}

.fs-deposit-count {
    font-family: "Russo One", sans-serif;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.1;
}

.fs-deposit-match {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.fs-deposit-min {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
[class*="grid"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

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

section {
    overflow: clip;
}

/* ============================================
   SOCIAL PROOF - Review cards
   ============================================ */
.review-card {
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.review-card-stars {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 8px;
}

.review-card-text {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.review-card-author {
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   BREADCRUMB - Page navigation
   ============================================ */
.breadcrumb {
    padding: 12px 0;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
}

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

.breadcrumb-item a {
    color: var(--muted-foreground);
    text-decoration: none;
}

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

.breadcrumb-sep {
    color: var(--muted-foreground);
    margin: 0 4px;
    list-style: none;
}

.breadcrumb-current {
    color: var(--foreground);
}

/* ============================================
   WHEEL OF FORTUNE - Preview section
   ============================================ */
.wheel-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.wheel-graphic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid var(--secondary);
    background: conic-gradient(
        var(--primary) 0deg 45deg,
        var(--accent) 45deg 90deg,
        var(--secondary) 90deg 135deg,
        var(--primary) 135deg 180deg,
        var(--accent) 180deg 225deg,
        var(--secondary) 225deg 270deg,
        var(--primary) 270deg 315deg,
        var(--accent) 315deg 360deg
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-graphic::after {
    content: '🎯';
    position: absolute;
    font-size: 36px;
    background: var(--background);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}