/*
 * XON Casino - Design System
 * Cyberpunk Neon Aesthetic
 * Fonts: Orbitron (headings) + Exo 2 (body)
 * Mobile-first responsive design
 */

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

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

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

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

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

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BODY & BASE TYPOGRAPHY
   Exo 2 for body, 17px desktop / 16px mobile
   ============================================ */
body {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Orbitron for headings, Exo 2 for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

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

@media (min-width: 1024px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
}

p {
    margin-bottom: 24px;
}

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

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

strong, b {
    font-weight: 700;
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 24px;
}

li {
    margin-bottom: 8px;
}

/* ============================================
   CONTAINER - Max-width content wrapper
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ============================================
   SECTION HEADINGS - Orbitron uppercase
   ============================================ */
.section-heading {
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--foreground);
}

.section-heading--left {
    text-align: left;
}

/* ============================================
   BUTTONS - Primary, Ghost, Glow effects
   Darkened bg (#D1175E) for WCAG AA contrast
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-foreground);
    background-color: #D1175E;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    min-height: 48px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    color: var(--primary-foreground);
    background-color: #E8246E;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 45, 120, 0.6), 0 0 48px rgba(255, 45, 120, 0.3);
}

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

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
    min-height: 56px;
}

/* Neon glow pulse animation */
.btn-glow {
    box-shadow: 0 0 16px rgba(209, 23, 94, 0.4), 0 0 32px rgba(209, 23, 94, 0.15);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 16px rgba(209, 23, 94, 0.4), 0 0 32px rgba(209, 23, 94, 0.15);
    }
    50% {
        box-shadow: 0 0 24px rgba(209, 23, 94, 0.6), 0 0 48px rgba(209, 23, 94, 0.3);
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--muted);
    border-radius: 8px;
    padding: 10px 20px;
    min-height: 44px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.btn-cyan {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-cyan:hover {
    background-color: #33ddff;
    color: var(--accent-foreground);
}

/* ============================================
   HEADER - Fixed sticky with backdrop blur
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 14, 31, 0.92);
    border-bottom: 1px solid rgba(58, 63, 92, 0.4);
    transition: background 0.3s ease;
}

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

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

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(255, 45, 120, 0.5));
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
}

/* Header Actions - Desktop */
.header-actions {
    display: none;
    gap: 12px;
    align-items: center;
}

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

/* ============================================
   MOBILE MENU - Hamburger toggle & drawer
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

/* Mobile nav drawer */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 20px 40px;
    }

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

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

    .main-nav .nav-link {
        font-size: 18px;
        padding: 16px 20px;
        min-height: 56px;
        border-radius: 8px;
        border: 1px solid rgba(58, 63, 92, 0.3);
    }

    /* Mobile nav CTA buttons */
    .main-nav::after {
        content: '';
        display: block;
        padding-top: 24px;
    }

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

    .mobile-nav-actions .btn-primary,
    .mobile-nav-actions .btn-ghost {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   MAIN CONTENT - Top spacing for fixed header
   ============================================ */
#main-content {
    padding-top: var(--header-height);
}

/* ============================================
   SECTION SPACING
   80px desktop / 48px mobile between sections
   ============================================ */
.section-spacing {
    padding: 48px 0;
}

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

/* ============================================
   HERO SECTIONS
   Full-bleed dark with radial gradient glow
   ============================================ */
.hero {
    position: relative;
    padding: 40px 20px 48px;
    background: radial-gradient(ellipse at center top, rgba(255, 45, 120, 0.12) 0%, rgba(10, 14, 31, 0) 60%),
                var(--background);
    text-align: center;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero {
        padding: 64px 28px 80px;
        text-align: left;
    }
}

.hero__inner {
    max-width: 1140px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero__inner--split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

@media (max-width: 1023px) {
    .hero__content {
        text-align: center;
    }
}

.hero__visual {
    position: relative;
    z-index: 1;
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .hero__visual {
        margin-top: 0;
    }
}

.hero__visual img {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
}

.hero__subtitle {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 560px;
}

@media (max-width: 1023px) {
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

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

.hero__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

.text-accent {
    color: var(--primary);
}

.text-cyan {
    color: var(--accent);
}

/* ============================================
   GAME CARD GRID
   4-col desktop / 2-col tablet / scroll mobile
   ============================================ */
.game-grid-section {
    padding: 48px 20px;
}

@media (min-width: 1024px) {
    .game-grid-section {
        padding: 80px 28px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.game-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.game-grid::-webkit-scrollbar {
    display: none;
}

.game-grid--scroll-mobile .game-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
}

@media (min-width: 480px) {
    .game-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .game-grid--scroll-mobile .game-card {
        flex: none;
    }
}

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

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

.game-card {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.game-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-card__info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.game-card__name {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}

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

.game-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #D1175E;
    color: var(--primary-foreground);
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background: var(--secondary);
}

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

.cta-banner__glow-top,
.cta-banner__glow-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5), 0 0 24px rgba(0, 212, 255, 0.2);
}

.cta-banner__glow-top {
    top: 0;
}

.cta-banner__glow-bottom {
    bottom: 0;
}

.cta-banner__inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--foreground);
    margin-bottom: 16px;
}

.cta-banner__subtext {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-banner__micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   Expandable Q&A with neon accents
   ============================================ */
.faq-section {
    padding: 48px 20px;
}

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

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

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

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

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

.faq-question[aria-expanded="true"] {
    border-left-color: var(--primary);
    color: var(--foreground);
}

.faq-question__icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer__inner {
    padding: 0 20px 24px 20px;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.faq-answer__inner p {
    margin-bottom: 16px;
}

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

.faq-answer__inner a {
    color: var(--accent);
}

/* ============================================
   BONUS DETAIL CARD
   Structured bonus info with terms & CTA
   ============================================ */
.bonus-cards-row {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
}

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

.bonus-card {
    position: relative;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 20px;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    display: flex;
    flex-direction: column;
}

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

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(255, 45, 120, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bonus-card__glow {
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 16px rgba(255, 45, 120, 0.5);
    border-radius: 0 0 4px 4px;
}

.bonus-card__headline {
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.bonus-card__highlight {
    font-family: "Orbitron", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
}

@media (min-width: 1024px) {
    .bonus-card__highlight {
        font-size: 36px;
    }
}

.bonus-card__details {
    flex: 1;
    margin-bottom: 20px;
}

.bonus-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 63, 92, 0.4);
    gap: 12px;
}

.bonus-card__row:last-child {
    border-bottom: none;
}

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

.bonus-card__value {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    text-align: right;
}

.bonus-card__note {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.5;
}

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

/* ============================================
   PROVIDER LOGO ROW
   Horizontal scrollable logo strip
   ============================================ */
.provider-row-section {
    padding: 32px 20px;
}

@media (min-width: 1024px) {
    .provider-row-section {
        padding: 48px 28px;
    }
}

.provider-row-container {
    max-width: 1140px;
    margin: 0 auto;
}

.provider-row__label {
    display: block;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
}

.provider-row {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    scrollbar-width: none;
    justify-content: flex-start;
}

.provider-row::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .provider-row {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
}

.provider-row__logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    flex-shrink: 0;
    scroll-snap-align: start;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease, transform 0.2s ease;
    object-fit: contain;
}

.provider-row__logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* ============================================
   HOW-TO STEPS
   Numbered step cards with connecting lines
   ============================================ */
.steps-section {
    padding: 48px 20px;
}

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

.steps-container {
    max-width: 1140px;
    margin: 0 auto;
}

.steps-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-card {
    flex: 1;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

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

.step-card__icon-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
    margin-bottom: 16px;
    font-size: 28px;
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card__number {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-card__title {
    font-family: "Exo 2", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

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

/* Step connector lines (desktop only) */
.step-card__connector {
    display: none;
}

@media (min-width: 768px) {
    .step-card__connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -24px;
        width: 32px;
        height: 2px;
        border-top: 2px dashed var(--accent);
        opacity: 0.4;
        z-index: 2;
    }
}

/* ============================================
   SEO CONTENT BLOCK
   Long-form text with comfortable reading
   ============================================ */
.seo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px;
}

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

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

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

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-content p {
    max-width: 75ch;
}

.seo-content ul,
.seo-content ol {
    max-width: 75ch;
    margin-bottom: 24px;
}

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

/* ============================================
   TABLES - Styled data tables
   ============================================ */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

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

.data-table thead {
    background: var(--secondary);
}

.data-table th {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    color: var(--accent);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 12px 16px;
    color: var(--foreground);
    border-bottom: 1px solid rgba(58, 63, 92, 0.3);
}

.data-table tbody tr {
    background: var(--card);
    transition: background 0.2s ease;
}

.data-table tbody tr:hover {
    background: var(--secondary);
}

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

/* Highlighted row for comparison tables */
.data-table tr.highlight {
    background: rgba(255, 45, 120, 0.08);
}

.data-table tr.highlight td {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   ENGAGEMENT PATTERNS
   Callouts, stats, pull quotes, TL;DR
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.1);
}

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

.summary-box__title {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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

/* Callout / highlight box */
.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 20px 20px 20px 24px;
    margin-bottom: 32px;
}

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

.callout--warning {
    border-left-color: #FFA500;
}

.callout__title {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.callout p {
    margin-bottom: 0;
    max-width: none;
}

.callout a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.stat-highlight__number {
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
    display: block;
    margin-bottom: 8px;
}

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

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

.stat-highlight__source {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

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

.stats-row__item {
    text-align: center;
    padding: 20px 12px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stats-row__number {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.stats-row__label {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--card);
    border-radius: 0 12px 12px 0;
}

.pull-quote__text {
    font-family: "Exo 2", sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.pull-quote__cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Details/summary expandable */
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

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

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

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

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

details[open] summary {
    border-bottom: 1px solid var(--border);
}

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

/* ============================================
   CRO PATTERNS
   Trust badges, comparison, social proof
   ============================================ */

/* Trust badges row */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    font-size: 20px;
}

/* Testimonial / Social proof card */
.testimonial-card {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    padding: 20px;
    margin-bottom: 16px;
}

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

.testimonial-card__author {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Trustpilot badge */
.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    width: fit-content;
}

.trustpilot-badge__stars {
    color: #00b67a;
    font-size: 20px;
    letter-spacing: 2px;
}

.trustpilot-badge__score {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
}

.trustpilot-badge__label {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   CATEGORY CARDS - Game category navigation
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

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

.category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--foreground);
    transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 120px;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    color: var(--foreground);
}

.category-card__icon {
    font-size: 32px;
}

.category-card__name {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card__count {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   PILL FILTERS - Horizontal filter chips
   ============================================ */
.pill-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.pill-row::-webkit-scrollbar {
    display: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    border-radius: 24px;
    background: transparent;
    color: var(--accent);
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    min-height: 44px;
    flex-shrink: 0;
}

.pill:hover,
.pill.active {
    background: #D1175E;
    border-color: #D1175E;
    color: var(--primary-foreground);
}

/* ============================================
   INTERNAL LINK CARDS - Site navigation grid
   ============================================ */
.link-card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
}

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

/* Center the last row items when fewer than 3 */
@media (min-width: 768px) {
    .link-card-grid--centered {
        justify-items: center;
    }
    .link-card-grid--centered .link-card:nth-last-child(-n+2):first-child,
    .link-card-grid--centered .link-card:nth-last-child(-n+2):first-child ~ .link-card {
        max-width: 100%;
    }
}

.link-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--foreground);
    transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out, transform 0.25s ease-out;
}

.link-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
    color: var(--foreground);
}

.link-card__icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.link-card__content {
    flex: 1;
    min-width: 0;
}

.link-card__title {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.link-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   LOYALTY TEASER - Level progression visual
   ============================================ */
.loyalty-levels {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.loyalty-levels::-webkit-scrollbar {
    display: none;
}

.loyalty-level {
    flex: 0 0 140px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    scroll-snap-align: start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.loyalty-level:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
}

.loyalty-level__icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.loyalty-level__name {
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.loyalty-level__range {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   GAME SHOW HIGHLIGHTS
   ============================================ */
.game-show-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.25s ease-out, transform 0.25s ease-out;
}

.game-show-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.game-show-card__multiplier {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 16px rgba(255, 45, 120, 0.4);
    display: block;
    margin-bottom: 8px;
}

.game-show-card__name {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   RESPONSIBLE GAMING PAGE
   Subdued styling - no neon glow
   ============================================ */
.page-responsible .hero {
    background: var(--background);
}

.page-responsible h2 {
    text-transform: none;
    letter-spacing: 0;
}

.responsible-tools {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
}

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

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

.responsible-tool__icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 12px;
}

.responsible-tool__info h3 {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.responsible-tool__info p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Badge 18+ */
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--muted);
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
}

.badge-18--large {
    width: 72px;
    height: 72px;
    font-size: 22px;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

/* ============================================
   PRIVACY PAGE - Clean minimal layout
   ============================================ */
.page-privacy .hero {
    background: var(--background);
}

.legal-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 48px 20px;
}

@media (min-width: 1024px) {
    .legal-content {
        padding: 64px 28px;
    }
}

.legal-content h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
}

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

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

.legal-content ul {
    padding-left: 1.2em;
}

.legal-content li {
    margin-bottom: 6px;
    color: var(--muted-foreground);
}

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

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

.legal-date {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   4 columns desktop, stacked mobile
   ============================================ */
.site-footer {
    background: #070A16;
    padding-top: 0;
    margin-top: 0;
    position: relative;
}

.footer-glow-line {
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5), 0 0 24px rgba(0, 212, 255, 0.2);
}

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

@media (min-width: 1024px) {
    .footer-inner {
        padding: 48px 28px 24px;
    }
}

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

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

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

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

.footer-heading {
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.footer-links li:not(:has(a)) {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Footer payments */
.footer-payments {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(58, 63, 92, 0.3);
}

.footer-section-label {
    display: block;
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.footer-logo-row::-webkit-scrollbar {
    display: none;
}

.footer-logo-row img {
    height: 32px;
    width: auto;
    max-width: 100px;
    filter: grayscale(80%) brightness(0.8);
    transition: filter 0.2s ease;
    object-fit: contain;
}

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

/* Footer legal */
.footer-legal {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(58, 63, 92, 0.3);
    text-align: center;
}

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

.badge-license img {
    width: 60px;
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.badge-license img:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in-up triggered by IntersectionObserver
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* Neon glow line divider */
.neon-divider {
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
    border: none;
    margin: 0;
}

/* ============================================
   TWO-COLUMN LAYOUT for feature comparisons
   ============================================ */
.two-col-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
}

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

/* ============================================
   FEATURE LIST with icons
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 63, 92, 0.2);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list__icon {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 2px;
}

/* Links in muted text blocks need underline for a11y */
.section-spacing p a,
.bonus-shop-teaser p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   FREISPIELE PAGE - Bonus Shop Teaser
   ============================================ */
.page-freispiele .hero {
    background:
        radial-gradient(ellipse at 60% 20%, rgba(255, 45, 120, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        var(--background);
}

.bonus-shop-items {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

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

.bonus-shop-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: border-color 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.bonus-shop-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.bonus-shop-item__icon {
    font-size: 36px;
    display: block;
    margin-bottom: 4px;
}

.bonus-shop-item__title {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-shop-item__price {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   SPIELAUTOMATEN PAGE - Slots page styling
   ============================================ */
.page-slots .hero {
    background:
        radial-gradient(ellipse at 60% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 45, 120, 0.10) 0%, transparent 50%),
        var(--background);
}

.crash-games-section {
    padding-bottom: 0;
}

.crash-games-section + .game-grid-section {
    padding-top: 0;
}

.category-desc p {
    margin-bottom: 0;
}

/* ============================================
   LIVE CASINO PAGE - Warm accent styling
   ============================================ */
.page-live .hero {
    background:
        radial-gradient(ellipse at 50% 20%, rgba(255, 45, 120, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 212, 255, 0.10) 0%, transparent 50%),
        var(--background);
}

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

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

.live-feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
}

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

/* ============================================
   HOMEPAGE - Hero background animation
   ============================================ */
.page-home .hero {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 45, 120, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        var(--background);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-home .hero {
        min-height: 70vh;
    }
}

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

/* Deposit table wrapper within bonus section */
.deposit-table-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MOBILE-SPECIFIC UTILITY
   ============================================ */

/* Hide on mobile, show on desktop */
.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
}

/* Show on mobile, hide on desktop */
.mobile-only {
    display: block;
}

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

/* Center text utility */
.text-center {
    text-align: center;
}

/* ============================================
   MOBILE NAV ACTIONS (inside drawer)
   ============================================ */
@media (max-width: 768px) {
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .nav-mobile-actions .btn-primary,
    .nav-mobile-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .nav-mobile-actions {
        display: none;
    }
}