/* ============================================================
   DRAGONIA CASINO - Design System
   Anime-maximalist aesthetic with mobile-first responsive design
   Fonts: Rajdhani (headlines) + Nunito Sans (body)
   ============================================================ */

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

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

body {
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --primary: #DC2626;
    --primary-foreground: #FFFFFF;
    --secondary: #7C3AED;
    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;
}

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

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

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

a {
    word-break: break-all;
}

a:not(.btn):not(.nav-link):not(.header-logo):not(.footer-logo) {
    word-break: break-all;
}

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

section {
    overflow: clip;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Rajdhani: headings (angular, commanding)
   Nunito Sans: body (smooth, readable)
   ============================================ */

h1, h2, h3, h4, h5, h6,
.heading {
    font-family: "Rajdhani", "Arial Narrow", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--foreground);
}

h1, .h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
}

h2, .h2 {
    font-size: clamp(1.625rem, 3vw + 0.5rem, 2.375rem);
    font-weight: 700;
}

h3, .h3 {
    font-size: clamp(1.3rem, 2vw + 0.3rem, 1.625rem);
    font-weight: 600;
}

h4, .h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.2rem, 1.25rem);
    font-weight: 600;
}

/* Body text max-width for readability (~72 chars) */
.prose p,
.seo-content p {
    max-width: 72ch;
}

.prose {
    font-size: 16px;
    line-height: 1.7;
}

.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul,
.prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 0.4rem;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.4);
    text-underline-offset: 2px;
    transition: color 0.2s, text-decoration-color 0.2s;
    word-break: normal;
    overflow-wrap: break-word;
}

.prose a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.prose blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(245, 158, 11, 0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.prose blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.prose th {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.875rem;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, var(--secondary), #1a0a2e);
}

.prose tbody tr:nth-child(even) {
    background: rgba(26, 27, 46, 0.4);
}

/* Gradient text effect for hero numbers */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4), 0 0 40px rgba(245, 158, 11, 0.2);
}

/* Small / muted text */
.text-muted {
    color: var(--muted-foreground);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.8125rem;
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

/* Section spacing */
.section {
    padding: 56px 0;
}

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

.section--tight {
    padding: 32px 0;
}

@media (min-width: 768px) {
    .section--tight {
        padding: 48px 0;
    }
}

/* Section headings */
.section__header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: 3rem;
    }
}

.section__header h2 {
    margin-bottom: 0.75rem;
}

.section__header p {
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0 auto;
    font-size: 1.0625rem;
}

/* ============================================
   BUTTONS
   .btn - base
   .btn-primary - crimson fire CTA
   .btn-outline - border style
   .btn-sm, .btn-lg - sizes
   .btn-glow - pulse glow animation
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
    padding: 10px 24px;
    font-size: 1rem;
    word-break: normal;
}

.btn-sm {
    min-height: 40px;
    padding: 6px 18px;
    font-size: 0.9375rem;
    border-radius: 6px;
}

.btn-lg {
    min-height: 56px;
    padding: 14px 36px;
    font-size: 1.125rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(220, 38, 38, 0.08);
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Pulse glow animation for primary CTAs */
.btn-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(239, 68, 68, 0.3), 0 0 16px rgba(239, 68, 68, 0.15);
    }
    50% {
        box-shadow: 0 0 16px rgba(239, 68, 68, 0.5), 0 0 32px rgba(239, 68, 68, 0.25);
    }
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

/* ============================================
   HEADER - Sticky frosted glass navigation
   z-index: 1000, toggle: 1001, drawer: 999
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 16, 25, 0.85);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

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

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

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

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
    word-break: normal;
}

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

.logo-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted-foreground);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    word-break: normal;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-login {
    display: none;
}

.header-register {
    display: none;
}

@media (min-width: 768px) {
    .header-register {
        display: inline-flex;
    }
}

@media (min-width: 1024px) {
    .header-login {
        display: inline-flex;
    }
    .main-nav {
        display: flex;
    }
}

/* ============================================
   MOBILE MENU TOGGLE - Hamburger → X animation
   ============================================ */

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

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

/* Hamburger → X when expanded */
.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);
}

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

/* ============================================
   MOBILE NAV DRAWER
   position: fixed, full-screen below header
   ============================================ */

.main-nav {
    display: none;
}

.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md);
    animation: slideInMobile 0.3s var(--ease-out);
}

@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.main-nav.is-open .nav-link {
    min-height: 56px;
    font-size: 1.25rem;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--foreground);
}

.main-nav.is-open .nav-link:hover {
    background: rgba(220, 38, 38, 0.08);
    color: var(--primary);
}

/* Mobile nav CTA buttons */
.main-nav.is-open::after {
    content: '';
    display: block;
    flex-shrink: 0;
    height: 120px;
}

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

.main-nav.is-open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
    .main-nav.is-open {
        position: static;
        flex-direction: row;
        background: none;
        overflow: visible;
        padding: 0;
        animation: none;
    }
    .main-nav.is-open .nav-list {
        flex-direction: row;
        gap: 4px;
    }
    .main-nav.is-open .nav-link {
        min-height: auto;
        font-size: 1rem;
        padding: 8px 16px;
        border-bottom: none;
        border-radius: 6px;
        color: var(--muted-foreground);
    }
    .nav-mobile-cta {
        display: none !important;
    }
}


/* ============================================
   FOOTER - 4-column layout
   ============================================ */

.site-footer {
    background: #0a0b14;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px var(--space-md) 0;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 64px var(--space-lg) 0;
    }
}

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

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

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

/* Footer brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    word-break: normal;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-description {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Footer headings */
.footer-heading {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--foreground);
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-heading-mt {
    margin-top: 24px;
}

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

.footer-links a {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    transition: color 0.2s;
    word-break: normal;
}

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

/* Payment badges */
.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

/* Trust badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

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

.footer-bottom-inner {
    text-align: center;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    color: #8b93a5;
    font-size: 0.75rem;
}

/* ============================================
   HERO SECTIONS
   Full-bleed with diagonal clip-path divider
   ============================================ */

.hero {
    position: relative;
    padding: 72px 0 56px;
    padding-top: calc(var(--header-height) + 40px);
    background: linear-gradient(160deg, #0F1019 0%, #1a0a2e 40%, #0F1019 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 96px;
        padding-top: calc(var(--header-height) + 72px);
        min-height: 540px;
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

@media (min-width: 768px) {
    .hero__inner {
        padding: 0 var(--space-lg);
    }
}

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

.hero__content {
    max-width: 680px;
}

@media (min-width: 1024px) {
    .hero__content {
        max-width: 600px;
    }
}

.hero__title {
    margin-bottom: 1rem;
}

.hero__subtitle {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    max-width: 50ch;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.125rem;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .hero__actions {
        flex-direction: row;
    }
}

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Hero background mascot image */
.hero__bg-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
    z-index: 1;
    display: none;
}

@media (min-width: 1024px) {
    .hero__bg-image {
        display: block;
    }
}

.hero__bg-image img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
    animation: dragonFloat 3s ease-in-out infinite alternate;
}

@keyframes dragonFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}

/* Diagonal clip-path divider */
.hero__slash {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 3;
    background: var(--background);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 768px) {
    .hero__slash {
        height: 80px;
    }
}

/* Hero ember / particle background effect */
.hero__embers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(220, 38, 38, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(245, 158, 11, 0.25) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 60%, rgba(245, 158, 11, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 100%);
    animation: emberDrift 6s ease-in-out infinite alternate;
}

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


/* ============================================
   GAME CARD GRID - Responsive card layout
   1 col → 2 cols → 3/4 cols
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

/* Game Card */
.game-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2), 0 0 16px rgba(220, 38, 38, 0.1);
}

.game-card__image {
    position: relative;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card) 0%, rgba(26, 27, 46, 0.6) 100%);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.game-card:hover .game-card__image img {
    transform: scale(1.06);
}

/* Diagonal accent on card image bottom edge */
.game-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--card);
    clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}

.game-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.game-card__body {
    padding: 16px;
}

@media (min-width: 768px) {
    .game-card__body {
        padding: 20px;
    }
}

.game-card__title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    color: var(--card-foreground);
}

.game-card__desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.game-card__extra {
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.game-card__cta {
    width: 100%;
    text-align: center;
}


/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */

.cta-banner {
    position: relative;
    padding: 48px 0;
    background: linear-gradient(135deg, #0F1019 0%, #1a0a2e 50%, #0F1019 100%);
    text-align: center;
}

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

.cta-banner__bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(220, 38, 38, 0.3) 20px,
            rgba(220, 38, 38, 0.3) 22px
        );
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta-banner__headline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner__text {
    color: #c4c4d4;
    font-size: 1.0625rem;
    max-width: 55ch;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-banner__btn {
    margin-bottom: 1rem;
}

@media (max-width: 479px) {
    .cta-banner__btn {
        width: calc(100% - 32px);
        max-width: 360px;
    }
}

.cta-banner__microcopy {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    opacity: 0.8;
}


/* ============================================
   COMPARISON TABLE - Responsive data table
   ============================================ */

.comparison-table-wrapper {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

/* Scroll shadow hint on right side */
.has-scroll-hint .table-scroll {
    background:
        linear-gradient(to right, var(--card) 30%, transparent),
        linear-gradient(to left, var(--card) 30%, transparent),
        linear-gradient(to right, rgba(0,0,0,0.15), transparent 20px),
        linear-gradient(to left, rgba(0,0,0,0.15), transparent 20px);
    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-size: 40px 100%, 40px 100%, 20px 100%, 20px 100%;
    background-attachment: local, local, scroll, scroll;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead th {
    background: linear-gradient(135deg, var(--secondary), #1a0a2e);
    color: var(--primary-foreground);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.875rem;
    padding: 16px 12px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}

.comparison-table tbody td {
    padding: 16px 12px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
    vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(26, 27, 46, 0.3);
}

/* Highlighted / recommended row */
.row-highlight {
    border-left: 3px solid var(--primary);
    background: rgba(239, 68, 68, 0.04) !important;
}

.row-highlight td:first-child {
    font-weight: 700;
}

.table-recommend-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 4px;
}

/* Gold accent for important values */
.value-gold {
    color: var(--accent);
    font-weight: 700;
}

.value-fast {
    color: #22c55e;
    font-weight: 600;
}


/* ============================================
   STAT HIGHLIGHT ROW - Animated counters
   ============================================ */

.stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 24px 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stat-row {
        flex-wrap: nowrap;
        padding: 32px 24px;
    }
}

.stat-item {
    flex: 1 1 45%;
    text-align: center;
    padding: 16px 8px;
    min-width: 0;
}

@media (min-width: 768px) {
    .stat-item {
        flex: 1 1 0;
        padding: 8px 16px;
    }
}

.stat-item__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    word-break: normal;
}

.stat-item__number {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.3));
}

.stat-item__label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
}

.stat-divider {
    display: none;
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
        width: 1px;
        background: var(--border);
        align-self: stretch;
        flex-shrink: 0;
    }
}


/* ============================================
   FAQ ACCORDION - details/summary based
   ============================================ */

.faq-accordion {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    min-height: 56px;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--card-foreground);
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer-inner {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin-bottom: 0.75rem;
}

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

.faq-answer-inner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: normal;
    overflow-wrap: break-word;
}

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


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

/* TL;DR / Summary box */
.tldr-box {
    background: rgba(139, 92, 246, 0.08);
    border-left: 4px solid var(--secondary);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 1.5rem 0;
}

.tldr-box__title {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a78bfa;
    margin-bottom: 8px;
}

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

/* Callout / highlight box */
.callout-box {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 1.5rem 0;
}

.callout-box--tip {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.2);
}

.callout-box--warning {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.2);
}

.callout-box__icon {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.callout-box p {
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Pull quote */
.pull-quote {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.pull-quote__text {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--foreground);
}

.pull-quote__attr {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: "Nunito Sans", sans-serif;
}

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

.trust-badges-row .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
}


/* ============================================
   SCROLL ANIMATIONS
   Elements start hidden, revealed via JS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.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: 100ms; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }


/* ============================================
   GAME CATEGORY TABS
   Horizontal scrollable tabs with content swap
   ============================================ */

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

.tabs__nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    scrollbar-width: none;
}

.tabs__nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 20px;
    min-height: 48px;
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.2s var(--ease-out);
}

.tab-btn.active {
    color: var(--foreground);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

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

.tabs__panel {
    display: none;
    animation: tabFadeIn 0.2s var(--ease-out);
}

.tabs__panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   SEO CONTENT SECTION
   Long-form text with proper typography
   ============================================ */

.seo-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

@media (min-width: 1024px) {
    .seo-content {
        padding: 0 var(--space-xl);
    }
}


/* ============================================
   PROVIDER LOGO GRID
   ============================================ */

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

.provider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    min-height: 60px;
    transition: border-color 0.2s, transform 0.2s;
}

.provider-item:hover {
    border-color: var(--accent);
    transform: scale(1.04);
}

.provider-item img {
    filter: grayscale(1) brightness(0.7);
    transition: filter 0.3s;
    max-height: 36px;
}

.provider-item:hover img {
    filter: grayscale(0) brightness(1);
}

.provider-item span {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    text-align: center;
}


/* ============================================
   VIP TIER PROGRESSION
   ============================================ */

.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vip-tiers {
        flex-direction: row;
        gap: 8px;
    }
}

.vip-tier {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.vip-tier:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.vip-tier__name {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vip-tier__cashback {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-tier__label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* VIP progress bar */
.vip-progress {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 24px auto;
    max-width: 800px;
}

.vip-progress__fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1s var(--ease-out);
}


/* ============================================
   PAYMENT METHOD CARDS
   ============================================ */

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-card__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.payment-card__icon {
    font-size: 1.5rem;
}

.payment-card__title {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.payment-card__detail {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.payment-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}


/* ============================================
   AUTHORIZE / REDIRECT PAGE
   Minimal centered loading state
   ============================================ */

.redirect-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--background);
    padding: 24px;
}

.redirect-page__logo {
    margin-bottom: 32px;
}

.redirect-page__mascot {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
    animation: dragonFloat 3s ease-in-out infinite alternate;
}

.redirect-page__text {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--foreground);
    animation: pulseOpacity 2s ease-in-out infinite;
}

@keyframes pulseOpacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.redirect-page__loader {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.redirect-page__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.redirect-page__dot:nth-child(2) { animation-delay: 0.2s; }
.redirect-page__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.redirect-page__fallback {
    margin-top: 32px;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.redirect-page__fallback a {
    color: var(--accent);
    text-decoration: underline;
    word-break: normal;
}


/* ============================================
   DATENSCHUTZ / LEGAL PAGES
   Clean readable text layout
   ============================================ */

.legal-page {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .legal-page {
        padding-top: calc(var(--header-height) + 64px);
        padding-bottom: 96px;
    }
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .legal-content {
        padding: 0 var(--space-lg);
    }
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content .subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--card-foreground);
    line-height: 1.7;
    max-width: 72ch;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
    color: var(--card-foreground);
}

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

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

.legal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin: 1.5rem 0;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Spacers */
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.mt-2xl { margin-top: 48px; }

.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mb-2xl { margin-bottom: 48px; }

/* Main content offset for fixed header */
#main-content {
    padding-top: 0;
}

/* Highlight text in gold */
.highlight-gold {
    color: var(--accent);
    font-weight: 700;
}

/* Visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Badge/tag styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
}

.badge--gold {
    background: var(--accent);
    color: var(--accent-foreground);
}

.badge--primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

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

/* Energy line decorative accent */
.energy-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px auto;
}

/* Info badge inside cards */
.info-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 4px;
    color: #a78bfa;
    font-weight: 600;
}

/* Two-column layout helper */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

/* Spotlight / featured section */
.spotlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .spotlight {
        padding: 48px 40px;
    }
}

/* Inline list for trust/feature items */
.inline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    list-style: none;
    padding: 0;
}

.inline-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.inline-features li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.75rem;
}

/* ============================================
   BONUS CARD - Special oversized featured card
   ============================================ */

.bonus-hero-card {
    background: var(--card);
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    max-width: var(--max-width);
    margin: 0 auto;
}

.bonus-hero-card__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .bonus-hero-card__inner {
        grid-template-columns: 1.2fr 1fr;
    }
}

.bonus-hero-card__visual {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, #1a0a2e 0%, #0F1019 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bonus-hero-card__visual img {
    max-height: 200px;
}

.bonus-hero-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.bonus-hero-card__amount {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.bonus-hero-card__terms {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}


/* ============================================
   STEPS ROW - 3-step numbered icons
   ============================================ */

.steps-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.step-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.step-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-item__title {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--card-foreground);
}

.step-item__desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

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


/* ============================================
   SOCIAL PROOF / TESTIMONIAL CARD
   ============================================ */

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}

.testimonial-card__stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--card-foreground);
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-card__author {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}


/* ============================================
   BONUS PAGE - Cashback Spotlight & Details
   ============================================ */

.hero--bonus {
    min-height: 480px;
    background: linear-gradient(160deg, #0F1019 0%, #1a0a2e 30%, #2d1810 60%, #0F1019 100%);
}

@media (min-width: 768px) {
    .hero--bonus {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero--bonus {
        min-height: 640px;
    }
}

.hero--bonus .hero__bg-image {
    opacity: 0.85;
}

@media (min-width: 1024px) {
    .hero--bonus .hero__bg-image {
        opacity: 1;
        width: 42%;
        right: 2%;
    }
}

/* Bonus detail list inside hero card */
.bonus-detail-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-detail-list li {
    font-size: 0.9375rem;
    color: var(--card-foreground);
    line-height: 1.5;
}

/* Cashback spotlight section */
.cashback-spotlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cashback-spotlight {
        padding: 40px;
    }
}

.cashback-spotlight__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .cashback-spotlight__inner {
        grid-template-columns: auto 1fr;
        gap: 40px;
        align-items: start;
    }
}

.cashback-spotlight__left {
    text-align: center;
}

@media (min-width: 768px) {
    .cashback-spotlight__left {
        position: sticky;
        top: calc(var(--header-height) + 24px);
    }
}

.cashback-spotlight__number {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
}

.cashback-spotlight__sublabel {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    margin-top: 4px;
}

.cashback-spotlight__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.cashback-spotlight__right h3 {
    margin-bottom: 12px;
}

.cashback-spotlight__right p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 72ch;
}

.cashback-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cashback-feature-list li {
    font-size: 0.9375rem;
    color: var(--card-foreground);
    line-height: 1.5;
}

.cashback-compare h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}


/* ============================================
   SPIELE PAGE - Hero & Category Styles
   ============================================ */

.hero--spiele {
    min-height: 480px;
    background: linear-gradient(160deg, #0F1019 0%, #0d0a2e 30%, #1a0820 60%, #0F1019 100%);
}

@media (min-width: 768px) {
    .hero--spiele {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero--spiele {
        min-height: 660px;
    }
}

.hero--spiele .hero__bg-image {
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .hero--spiele .hero__bg-image {
        opacity: 1;
        width: 44%;
        right: 2%;
    }
}


/* ============================================
   LIVE CASINO PAGE - Hero & Styles
   ============================================ */

.hero--livecasino {
    min-height: 480px;
    background: linear-gradient(160deg, #0F1019 0%, #0e1a2e 25%, #1a0a2e 50%, #1a1018 75%, #0F1019 100%);
}

@media (min-width: 768px) {
    .hero--livecasino {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero--livecasino {
        min-height: 660px;
    }
}

.hero--livecasino .hero__bg-image {
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .hero--livecasino .hero__bg-image {
        opacity: 1;
        width: 44%;
        right: 1%;
    }
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - Hero & Styles
   ============================================ */

.hero--zahlungen {
    min-height: 480px;
    background: linear-gradient(160deg, #0F1019 0%, #1a1008 25%, #1a0a2e 50%, #0d1a18 75%, #0F1019 100%);
}

@media (min-width: 768px) {
    .hero--zahlungen {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero--zahlungen {
        min-height: 660px;
    }
}

.hero--zahlungen .hero__bg-image {
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .hero--zahlungen .hero__bg-image {
        opacity: 1;
        width: 42%;
        right: 2%;
    }
}


/* Paysafecard Spotlight */
.paysafecard-spotlight {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

@media (min-width: 768px) {
    .paysafecard-spotlight {
        padding: 40px;
    }
}

.paysafecard-spotlight__inner {
    width: 100%;
}

.paysafecard-spotlight .steps-row {
    gap: 12px;
}

.psc-benefits .inline-features li {
    font-size: 0.9375rem;
}


/* Crypto Coins Row */
.crypto-coins-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .crypto-coins-row {
        gap: 16px;
    }
}

.crypto-coin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 80px;
    transition: border-color 0.2s, transform 0.2s;
}

@media (min-width: 480px) {
    .crypto-coin-item {
        padding: 20px 28px;
        min-width: 100px;
    }
}

.crypto-coin-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.crypto-coin-icon {
    font-size: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.3));
}

@media (min-width: 768px) {
    .crypto-coin-icon {
        font-size: 2.5rem;
    }
}

.crypto-coin-label {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
}


/* ============================================
   HOMEPAGE - Hero Enhanced
   ============================================ */

.hero--home {
    min-height: 520px;
    background: linear-gradient(160deg, #0F1019 0%, #1a0a2e 35%, #120820 65%, #0F1019 100%);
}

@media (min-width: 768px) {
    .hero--home {
        min-height: 600px;
    }
}

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

.hero--home .hero__bg-image {
    opacity: 0.85;
}

@media (min-width: 1024px) {
    .hero--home .hero__bg-image {
        opacity: 1;
        width: 45%;
        right: 2%;
    }
}

/* Homepage payment cards in 3-col on tablet */
@media (min-width: 480px) and (max-width: 767px) {
    .payment-card {
        min-height: auto;
    }
}

/* Homepage bonus hero card enhanced */
.bonus-hero-card {
    position: relative;
    overflow: hidden;
}

.bonus-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(220, 38, 38, 0.03) 30px,
        rgba(220, 38, 38, 0.03) 32px
    );
    pointer-events: none;
    z-index: 0;
}

.bonus-hero-card__inner {
    position: relative;
    z-index: 1;
}

/* Homepage provider grid enhanced */
.provider-grid .provider-item {
    min-height: 56px;
}

@media (min-width: 768px) {
    .provider-grid .provider-item {
        min-height: 64px;
    }
}

/* Homepage VIP tier shimmer effect on diamond */
.vip-tier:last-child {
    background: linear-gradient(135deg, var(--card) 0%, rgba(139, 92, 246, 0.08) 100%);
}

/* Payment card grid - make 5 cards work nicely */
@media (min-width: 768px) {
    .section .card-grid--cols-3 .payment-card:nth-child(4),
    .section .card-grid--cols-3 .payment-card:nth-child(5) {
        max-width: none;
    }
}

/* Homepage section link text styling */
.seo-content .comparison-table-wrapper {
    margin: 2rem 0;
}
