/* ===== HUSHCASINO DESIGN - Design-specific styles ===== */

/* --- ClashDisplay Font --- */
@font-face { font-family: 'ClashDisplay'; font-weight: 300; src: url('/fonts/clash-display-light.otf') format('opentype'); font-display: swap; }
@font-face { font-family: 'ClashDisplay'; font-weight: 400; src: url('/fonts/clash-display-regular.otf') format('opentype'); font-display: swap; }
@font-face { font-family: 'ClashDisplay'; font-weight: 500; src: url('/fonts/clash-display-medium.otf') format('opentype'); font-display: swap; }
@font-face { font-family: 'ClashDisplay'; font-weight: 600; src: url('/fonts/clash-display-semibold.otf') format('opentype'); font-display: swap; }
@font-face { font-family: 'ClashDisplay'; font-weight: 700; src: url('/fonts/clash-display-bold.otf') format('opentype'); font-display: swap; }

/* --- Global Font Application --- */
body {
    font-family: var(--font-family) !important;
}

h1, h2, h3, h4, h5, h6,
.hush-hero h1,
.features-section h2,
.steps-section h2,
.games-section h2,
.page-hero h1,
.iso-hero-title,
.cat-hero h1,
.error-page h1 {
    font-family: var(--font-display) !important;
}

.promo-banner-item,
.hush-hero .hero-badge,
.hero-trust-text,
.step-number,
.feature-card h3,
.step-card h3 {
    font-family: var(--font-family);
}

/* --- Top Promo Banner --- */
.promo-banner {
    background: linear-gradient(90deg, #16A34A, #22C55E);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    max-width: 100vw;
}

.promo-banner-track {
    display: flex;
    animation: promoScroll 20s linear infinite;
    width: max-content;
}

.promo-banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.promo-banner-item .promo-highlight {
    color: #FDE047;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-color: #FDE047;
}

.promo-banner-item .promo-btn {
    display: inline-flex;
    align-items: center;
    padding: 4px 16px;
    background: #FDE047;
    color: #000;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    min-height: 28px;
    transition: transform 0.2s;
}

.promo-banner-item .promo-btn:hover {
    transform: scale(1.05);
}

@keyframes promoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Hero Section --- */
.hush-hero {
    position: relative;
    background: #030713;
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 520px;
}

.hush-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hush-hero-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hush-hero-bg img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 90%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hush-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hush-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: #8b5cf6;
    margin-bottom: 24px;
}

.hush-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hush-hero h1 .hero-accent {
    color: #FDE047;
}

.hush-hero h1 .hero-highlight {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hush-hero-subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hush-hero-email {
    display: flex;
    align-items: center;
    max-width: 420px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 4px;
}

.hush-hero-email input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.hush-hero-email input::placeholder {
    color: #64748B;
}

.hush-hero-email button {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hush-hero-email button:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transform: scale(1.02);
}

.hush-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748B;
    font-size: 0.85rem;
    margin-top: 16px;
}

.hush-hero-trust svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #64748B;
    stroke-width: 2;
}

/* --- Providers Carousel --- */
.providers-section {
    padding: 40px 0;
    background: #0A0F1E;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.providers-section h3 {
    text-align: center;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.providers-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.providers-track img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(40%);
    transition: all 0.3s;
}

.providers-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- Feature Cards --- */
.features-section {
    padding: 64px 0;
    background: #030713;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(135deg, #131A2E 0%, #0A0F1E 100%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.feature-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon img {
    width: 44px;
    height: 44px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* --- Steps / How it works --- */
.steps-section {
    padding: 80px 0;
    background: #030713;
}

.steps-section .section-title {
    font-family: var(--font-serif);
}

.steps-section .section-eyebrow {
    display: block;
    text-align: center;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
}

.step-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.step-card-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}

.steps-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

/* --- Games Section --- */
.games-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #030713, #0A0F1E);
}

.games-header {
    text-align: center;
    margin-bottom: 16px;
}

.games-header-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.games-header-decor img {
    width: 40px;
    height: 40px;
}

.games-header h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.games-header h2 .games-accent {
    color: #3b82f6;
}

.games-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.games-desc {
    text-align: center;
    color: #94A3B8;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.game-thumb {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-thumb:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

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

.game-thumb-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.games-view-more {
    text-align: center;
}

.games-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    min-height: 44px;
}

.games-view-more a:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff;
}

/* --- SEO Text Override --- */
.seo-text-section {
    background: #0A0F1E;
}

.seo-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-text-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.seo-text-content h3 {
    color: #60a5fa;
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.seo-text-content p {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- FAQ Override --- */
.faq-section {
    background: #030713;
}

.faq-question {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.faq-question:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* --- Final CTA Override --- */
.final-cta {
    background: linear-gradient(135deg, #131A2E, #0A0F1E);
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Testimonials Override --- */
.testimonials-section {
    background: #0A0F1E;
}

.testimonial-card-inner {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

/* --- Footer redesign --- */
.hush-footer {
    background: #030713;
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    padding: 48px 0 0;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, #0F0F0F, rgba(255,255,255,0.15), #0F0F0F);
    margin-bottom: 40px;
}

.hush-footer-inner {
    display: flex;
    gap: 48px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hush-footer-brand {
    flex: 0 0 35%;
}

.hush-footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.hush-footer-brand .footer-logo img {
    height: 32px;
    width: auto;
}

.hush-footer-brand .footer-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.hush-footer-brand .footer-copy {
    color: #64748B;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(59, 130, 246, 0.2);
}

.footer-social a svg,
.footer-social a img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.footer-social a:hover svg,
.footer-social a:hover img {
    opacity: 1;
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-badges img {
    height: 36px;
    width: auto;
    opacity: 0.6;
}

.hush-footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hush-footer-links h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hush-footer-links a {
    display: block;
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.hush-footer-links a:hover {
    color: #8b5cf6;
}

.hush-footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.hush-footer-bottom .container {
    text-align: center;
}

.hush-footer-bottom p {
    color: #64748B;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Header CTA buttons — now defined in layout.css */

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hush-hero h1 {
        font-size: 2.5rem;
    }
    .hush-footer-inner {
        flex-direction: column;
        gap: 32px;
    }
    .hush-footer-brand {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.8rem;
    }
    .hush-hero {
        padding: 50px 0 40px;
        min-height: auto;
    }
    .hush-hero h1 {
        font-size: 2rem;
    }
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hush-footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .providers-track {
        gap: 24px;
    }
    .providers-track img {
        height: 24px;
    }
    .games-header h2 {
        font-size: 1.8rem;
    }
    .steps-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hush-hero-email {
        max-width: 100%;
    }
    .hush-hero-email input {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-width: 0;
    }
    .hush-hero-email button {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hush-footer-links {
        grid-template-columns: 1fr;
    }
}

/* --- Internal Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, #0A0F1E 0%, #131A2E 50%, #0A0F1E 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumbs {
    margin-bottom: 16px;
    padding: 0;
}

.page-hero .breadcrumbs a {
    color: #8b5cf6;
}

.page-hero .breadcrumbs a:hover {
    color: #fff;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: #94A3B8;
    font-size: 1.05rem;
    max-width: 600px;
}

/* Category page hero with stats */
.cat-page-hero {
    padding: 56px 0 48px;
}

.cat-page-hero p {
    margin-bottom: 24px;
}

.cat-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.cat-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    min-width: 100px;
}

.cat-hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
}

.cat-hero-stat-label {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .cat-hero-stats {
        gap: 12px;
        flex-wrap: wrap;
    }
    .cat-hero-stat {
        padding: 12px 16px;
        min-width: 80px;
        flex: 1;
    }
    .cat-hero-stat-num {
        font-size: 1.2rem;
    }
}

.iso-hero-title .highlight {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.iso-hero-cta {
    background: linear-gradient(90deg, #3b82f6, #60a5fa) !important;
}

.iso-stat-number {
    color: #60a5fa !important;
}

/* Error page override */
.error-page {
    background: #030713;
    padding: 120px var(--container-padding);
}

.error-page h1 {
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 8rem;
}

/* Content with sidebar override */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

.sidebar-widget {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    color: #60a5fa;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.contact-info-card {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 12px;
    padding: 24px;
}

.contact-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-trust-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
}

.contact-trust-badge-icon {
    color: #60a5fa;
}

@media (max-width: 768px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
}

/* --- Override existing sections --- */
.section-title {
    font-family: var(--font-serif);
}

/* Article preview cards override */
.article-preview-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.12);
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    transition: all 0.3s;
}

.article-preview-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

/* Bonus section override */
.bonus-section {
    background: #0A0F1E;
}

.bonus-card {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.bonus-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* Trust section override */
.trust-section {
    background: #030713;
}

.trust-card {
    background: linear-gradient(135deg, #131A2E, #0A0F1E);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.trust-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

/* Payment section override */
.payment-section {
    background: #0A0F1E;
}

.payment-item svg {
    stroke: #60a5fa;
}

/* KW carousel override */
.kw-carousel-section {
    background: #030713;
}

/* Game categories override */
.game-categories {
    background: #0A0F1E;
}

.game-cat-card {
    background: linear-gradient(135deg, #131A2E, #0A0F1E);
    border-color: rgba(59, 130, 246, 0.12);
}

.game-cat-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* How-to section override */
.how-to-section {
    background: #030713;
}

/* Button overrides — handled by components.css unified button system */

/* Articles section */
.articles-section {
    background: #0A0F1E;
}

/* Internal page hero */
.page-hero {
    background: linear-gradient(135deg, #0A0F1E 0%, #131A2E 50%, #0A0F1E 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

/* Live activity */
.live-activity-section {
    background: #0A0F1E;
}

/* Stats bar */
.stats-bar {
    background: linear-gradient(90deg, #0A0F1E, #131A2E, #0A0F1E);
    border-top: 1px solid rgba(59, 130, 246, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

/* Casino filters */
.casino-filters-section {
    background: linear-gradient(118.89deg, #1E283D 18.4%, #0A0F1E 78.86%);
    border: 1px solid rgba(59, 130, 246, 0.12);
}
