/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Crimson & Black
 * Typography: Sporty Bold
 * Generated: 2026-08-21T08:21:00.153Z
 */

@import 'https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap';

:root {
    --clr-muted: #f87171;
    --clr-light: #fef2f2;
    --clr-dark: #1a0a0a;
    --clr-primary: #dc2626;
    --clr-secondary-alpha: #f9731640;
    --clr-text: #fecaca;
    --clr-primary-alpha: #dc262640;
    --clr-darker: #0d0505;
    --clr-secondary: #f97316;
    --clr-accent: #fb923c;

    --typo-body: 'Lato', sans-serif;
    --typo-heading: 'Russo One', sans-serif;

    --element-spacing: 16px;
    --gap: 12px;
    --section-padding: 40px;
    --border-radius-md: 16px;
    --border-radius-sm: 4px;
    --border-radius-full: 100px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 30px;
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
}



/* BASE */

*, *::before, *::after {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}


.jump-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--clr-primary);
    color: rgb(255,255,255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    z-index: 10000;
    transition: top .25s ease;
}

.jump-link:focus {
    top: 10px;
    outline: 3px solid var(--clr-accent);
    outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--clr-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/*
 * Animations
 */

@keyframes play-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp-fx {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes run-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes do-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--typo-body);
    background: var(--clr-darker);
    color: var(--clr-light);
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--typo-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .25s ease;
}




.box_uNcfI {
    width: 100%;
    max-width: 75rem;
    margin: 0px auto;
    padding-top: 0;
    padding-right: 48px;
    padding-bottom: 0;
    padding-left: 48px;
}



/*! Header */

.site-header_nhyX1 {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 0 0 1px 0 solid rgba(255,255,255,0.1);
    transition: all .25s ease;
}

.site-header_nhyX1.scrolled {
    background: rgb(0 0 0 / 80%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header_nhyX1 .box_uNcfI {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-header_nhyX1 .logo {
    font-family: var(--typo-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--clr-light);
    letter-spacing: -0.5px;
}

.site-header_nhyX1 .logo span {
    color: var(--clr-primary);
}

.main-nav_J1RPC {
    display: flex;
    gap: 32px;
}

.main-nav_J1RPC a {
    font-weight: 500;
    color: var(--clr-muted);
    font-size: 14px;
    transition: color .25s ease;
}

.main-nav_J1RPC a:hover {
    color: var(--clr-primary);
}

.site-header_nhyX1-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}




.action_ips29 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--typo-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.action_ips29--primary {
    background: var(--clr-primary);
    border: none;
    box-shadow: 0 4px 14px var(--clr-primary-alpha);
    color: rgb(255,255,255);
    box-shadow: 0 4px 14px var(--clr-primary-alpha);
}

.action_ips29--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--clr-primary-alpha);
}

.action_ips29--secondary {
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255 255 255 / 20%);
    color: var(--clr-light);
}

.action_ips29--secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.action_ips29--large {
    padding-block: 16px;
    padding-inline: 36px;
    font-size: 16px;
}

.action_ips29--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 13px;
}




.banner_55E1W {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 60px;
    padding-left: 0;
}

.banner_55E1W::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -180px;
    width: 700px;
    height: 800px;
    background: radial-gradient(circle, var(--clr-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.banner_55E1W::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--clr-secondary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.banner_55E1W .box_uNcfI {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner_55E1W-content {
    order: 2;
}

.banner_55E1W-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
    padding-right: 16px;
    padding-bottom: 6px;
    padding-left: 16px;
    background: var(--clr-primary-alpha);
    border: 1px solid var(--clr-primary-alpha);
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 24px;
}

.banner_55E1W-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-primary);
}

.banner_55E1W-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--clr-light);
}

.banner_55E1W-content h1 em {
    font-style: normal;
    color: var(--clr-primary);
}

.banner_55E1W-subtitle {
    font-size: 1.063rem;
    color: var(--clr-muted);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.7em;
}

.banner_55E1W-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.banner_55E1W-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_55E1W-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}



/* --- Stats Bar --- */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 75rem;
    margin: 0px auto;
    padding-top: 0;
    padding-right: 48px;
    padding-bottom: 80px;
    padding-left: 48px;
}

.stat-block {
    text-align: center;
    padding-top: 32px;
    padding-right: 16px;
    padding-bottom: 32px;
    padding-left: 16px;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stats-val {
    font-family: var(--typo-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-light);
    letter-spacing: -0.03em;
}

.stats-val em {
    font-style: normal;
    color: var(--clr-primary);
}

.highlight-label {
    font-size: 13px;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 4px;
}


/* SECTIONS */

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

.zone_GrmNK--gray {
    background: rgba(255,255,255,0.03);
}

.zone_GrmNK-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.zone_GrmNK-head {
    text-align: center;
    margin-bottom: 56px;
}

.zone_GrmNK-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.88rem;
}

.zone_GrmNK-head p {
    font-size: 16px;
    color: var(--clr-muted);
    max-width: 460px;
    margin-inline: auto;
}

.zone_GrmNK-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.zone_GrmNK-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--clr-muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin: 0 auto;
}


/* ==================== CARDS ==================== */

.panel_MsSC9 {
    background: var(--clr-dark);
    border-radius: 14px;
    padding-top: 32px;
    padding-right: 28px;
    padding-bottom: 32px;
    padding-left: 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all .25s ease;
}

.panel_MsSC9:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}


/*! Bonus Cards */

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

.panel_MsSC9--bonus {
    position: relative;
    overflow: hidden;
}

.panel_MsSC9--bonus::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
}

.bonus-step {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.panel_MsSC9--bonus h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-light);
}

.panel_MsSC9--bonus p {
    color: var(--clr-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.bonus-badge {
    display: inline-block;
    background: var(--clr-primary-alpha);
    color: var(--clr-primary);
    padding-block: 5px;
    padding-inline: 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}


/* -- GAME CARDS -- */

.listing_gYEzi--games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.panel_MsSC9--game {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.panel_MsSC9--game:hover {
    border-color: var(--clr-primary);
}

.game-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--clr-dark);
}

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

.panel_MsSC9--game:hover .game-thumb img {
    transform: scale(1.03) rotate(1deg);
}

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

.game-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--clr-light);
}

.game-info span {
    font-size: 12px;
    color: var(--clr-muted);
}

.panel_MsSC9-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}

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

.panel_MsSC9-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.panel_MsSC9-name {
    font-weight: 600;
    color: rgb(255,255,255);
}


/* --- Provider Cards --- */

.listing_gYEzi--providers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.panel_MsSC9--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    aspect-ratio: 2/1;
    overflow: hidden;
    position: relative;
}

.panel_MsSC9--provider:hover {
    border-color: var(--clr-primary);
}

.panel_MsSC9--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6) contrast(0.8);
    transition: all .25s ease;
}

.panel_MsSC9--provider:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}

.panel_MsSC9--provider span {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-muted);
    text-align: center;
    opacity: 0;
    transition: opacity .25s ease;
}

.panel_MsSC9--provider:hover span {
    opacity: 1;
}



/* SPLIT LAYOUT */

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.split-block {
    border-radius: 16px;
    padding: 40px 36px;
}

.split-block--dark {
    background: var(--clr-darker);
    color: rgb(255,255,255);
}

.split-block--dark .zone_GrmNK-tag {
    color: var(--clr-accent);
}

.split-block--dark h2 {
    color: rgb(255,255,255);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 12px 0px 28px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pay-chip {
    background: rgba(255, 255, 255, 0.08);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 12%);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: background .25s ease;
}

.pay-chip:hover {
    background: rgba(255,255,255,0.15);
}

.split-block--white {
    background: var(--clr-dark);
    border: 1px solid rgba(255,255,255,0.1);
}

.split-block--white h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 12px 0px 28px;
}



/* -- REVIEWS -- */

.listing_gYEzi--reviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.panel_MsSC9--review {
    padding-top: 28px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
}

.panel_MsSC9-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 46px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(170deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: rgb(255,255,255);
}

.reviewer-info strong {
    display: block;
    color: var(--clr-light);
}

.stars {
    color: #fbbf24;
    font-size: 0.938rem;
    letter-spacing: 2px;
}

.review-item {
    padding: 20px 0;
    border: 1px 0 0 0 solid rgba(255,255,255,0.1);
}

.review-item:first-child {
    border-top: none;
    padding-top: 0px;
}

.review-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 170%;
    margin-bottom: 6px;
    font-style: italic;
}

.review-who {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--clr-light);
}

.panel_MsSC9--review p {
    color: var(--clr-muted);
    font-style: italic;
    line-height: 1.7;
}



.payments-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding-block: 16px;
    padding-inline: 20px;
    text-align: left;
}

.payments-table thead {
    background: rgb(255 255 255 / 5%);
}

.payments-table th {
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    font-size: 13px;
}

.payments-table tbody tr {
    border: 0 0 1px 0 rgba(255,255,255,0.05) solid;
    transition: background .25s ease;
}

.payments-table tbody tr:hover {
    background: rgb(255 255 255 / 3%);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method img {
    height: 32px;
    width: auto;
}

.time-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--clr-primary-alpha);
    border-radius: var(--border-radius-full);
    font-size: 0.813rem;
    color: var(--clr-primary);
}



/* ==================== ABOUT ==================== */

.detail-blocks {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-row--alt {
    direction: rtl;
}

.detail-row--alt > * {
    direction: ltr;
}

.detail-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--clr-light);
}

.detail-text p {
    color: var(--clr-muted);
    margin-bottom: 16px;
    line-height: 180%;
}

.detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image img {
    width: 100%;
    max-width: 420px;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}




.zone_GrmNK--cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.zone_GrmNK--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.zone_GrmNK--cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: rgb(255,255,255);
    margin-bottom: 16px;
    position: relative;
}

.zone_GrmNK--cta h2 em {
    font-style: normal;
}

.zone_GrmNK--cta p {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 90%);
    margin-bottom: 32px;
    position: relative;
}

.zone_GrmNK--cta .action_ips29 {
    position: relative;
    background: rgb(255,255,255);
    color: var(--clr-primary);
}

.zone_GrmNK--cta .action_ips29:hover {
    background: rgb(255 255 255 / 20%);
    color: rgb(255,255,255);
}



/* ===== SEO Text ===== */

.info-block {
    margin-top: 48px;
    padding-top: 36px;
    padding-right: 36px;
    padding-bottom: 36px;
    padding-left: 36px;
    background: var(--clr-dark);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--clr-light);
}

.info-block p {
    color: var(--clr-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.info-block p:last-child {
    margin-bottom: 0px;
}

.zone_GrmNK--seo-text {
    background: var(--clr-dark);
}

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

.seo-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--clr-light);
}

.seo-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-right: 0;
    margin-bottom: 16px;
    margin-left: 0;
    color: var(--clr-light);
}

.seo-content p {
    color: var(--clr-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}


/** FAQ **/

.faq-list {
    max-width: 720px;
    margin: 0px auto;
}

.faq-item {
    border: rgba(255,255,255,0.1) solid 0 0 1px 0;
}

.faq-question {
    width: 100%;
    padding-block: 22px;
    padding-inline: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-light);
    text-align: left;
    transition: color .25s ease;
}

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

.faq-icon {
    width: 30px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 22px;
    padding-left: 0;
    color: var(--clr-muted);
    line-height: 1.7;
}


/* Info Table */

.info-table {
    width: 100%;
    max-width: 750px;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--clr-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-table tr {
    border: solid 0 0 1px 0 rgba(255,255,255,0.1);
}

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

.info-table th,
.info-table td {
    padding-top: 18px;
    padding-right: 24px;
    padding-bottom: 18px;
    padding-left: 24px;
    text-align: left;
}

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(255,255,255,0.03);
}

.info-table td {
    color: var(--clr-muted);
}




.cta-bottom {
    text-align: center;
    padding-top: 100px;
    padding-right: 48px;
    padding-bottom: 100px;
    padding-left: 48px;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, var(--clr-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bottom h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    position: relative;
}

.cta-bottom h2 em {
    font-style: normal;
    color: var(--clr-primary);
}

.cta-bottom p {
    color: var(--clr-muted);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
}


/* FOOTER */

.site-footer_1DM78 {
    background: var(--clr-darker);
    padding-top: 60px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.site-footer_1DM78-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.site-footer_1DM78-col h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: rgb(255,255,255);
}

.site-footer_1DM78-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 14px;
}

.site-footer_1DM78-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer_1DM78-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.site-footer_1DM78-nav a:hover {
    color: rgb(255,255,255);
}

.cert-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px;
    filter: grayscale(80%) brightness(1.5);
    transition: all .25s ease;
}

.cert-logos img:hover {
    filter: saturate(1) brightness(1);
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding-top: 40px;
    padding-right: 0;
    padding-bottom: 40px;
    padding-left: 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
}

.responsible-gaming h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.5);
}

.responsible-text {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.gaming-care {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gaming-care a {
    display: block;
    transition: all .25s ease;
}

.gaming-care a:hover {
    transform: scale(1.03);
}

.gaming-care img {
    height: 40px;
    filter: grayscale(100%);
    transition: all .25s ease;
}

.gaming-care a:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.site-footer_1DM78-bottom {
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 24px;
    padding-left: 0;
    text-align: center;
}

.site-footer_1DM78-bottom p {
    font-size: 0.813rem;
    color: rgb(255 255 255 / 40%);
    margin-bottom: 8px;
}

.site-footer_1DM78-bottom p:last-child {
    margin-bottom: 0;
}

.footer-update {
    margin-top: 16px;
    opacity: 0.6;
}

.footer-legal {
    font-weight: 500;
}

.footer-disclaimer {
    max-width: 650px;
    margin: 12px auto 0;
    opacity: 0.5;
    line-height: 1.6em;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    background: none;
    border: none;
    z-index: 1002;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: var(--clr-light);
    transition: all .25s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo-mobile,
.mobile-cta {
    display: none;
}


/* --- Responsive - Tablet --- */

@media (max-width: 64em) {
    .banner_55E1W .box_uNcfI {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner_55E1W-content { order: 1; }
    .banner_55E1W-image { order: 2; }
    .banner_55E1W-subtitle { margin-left: auto; margin-right: auto; }
    .banner_55E1W-ctas { justify-content: center; }
    .banner_55E1W-image img { max-width: 480px; margin: 0 auto; }

    .box_uNcfI { padding-left: 32px; padding-right: 32px; }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 32px;
        padding-right: 32px;
    }

    .listing_gYEzi--bonuses { grid-template-columns: 1fr; }
    .listing_gYEzi--games { grid-template-columns: repeat(3, 1fr); }
    .listing_gYEzi--providers { grid-template-columns: repeat(4, 1fr); }
    .listing_gYEzi--reviews { grid-template-columns: 1fr; }

    .split-row { grid-template-columns: 1fr; }

    .detail-row { grid-template-columns: 1fr; }
    .detail-row--alt { direction: ltr; }

    .cta-bottom {
        padding-left: 32px;
        padding-right: 32px;
    }

    .site-footer_1DM78-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .site-footer_1DM78-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cert-logos { justify-content: center; }
}



/* RESPONSIVE - MOBILE */

@media (max-width: 47.9375em) {
    .site-header_nhyX1 .box_uNcfI {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--typo-heading);
        font-size: 17px;
        font-weight: 800;
        color: var(--clr-light);
        text-decoration: none;
        white-space: nowrap;
    }

    .logo-mobile span {
        color: var(--clr-primary);
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 160px;
        padding: 9px 16px;
        background: var(--clr-primary);
        color: rgb(255,255,255);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--clr-primary-alpha);
    }

    .site-header_nhyX1-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav_J1RPC {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--clr-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right .25s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.5);
        border-left: 2px solid var(--clr-primary);
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .main-nav_J1RPC.active {
        right: 0px;
    }

    .main-nav_J1RPC a {
        font-size: 18px;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: var(--clr-light);
    }

    .banner_55E1W { padding-top: 48px; padding-bottom: 32px; }
    .banner_55E1W-content h1 { font-size: 2rem; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .zone_GrmNK { padding: 60px 0px; }
    .box_uNcfI { padding: 0px 20px; }
    .zone_GrmNK-title { font-size: 1.75rem; }
    .zone_GrmNK-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; }

    .listing_gYEzi--bonuses { grid-template-columns: 1fr; }
    .listing_gYEzi--games { grid-template-columns: repeat(2, 1fr); }
    .listing_gYEzi--providers { grid-template-columns: repeat(3, 1fr); }

    .payments-table th:nth-child(2),
    .payments-table th:nth-child(3),
    .payments-table td:nth-child(2),
    .payments-table td:nth-child(3) {
        display: none;
    }

    .split-block {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .pay-grid { gap: 8px; }

    .panel_MsSC9 { padding: 24px 20px; }
    .panel_MsSC9--review { padding: 20px; }

    .info-block { padding: 24px 20px; }

    .info-table th,
    .info-table td { padding: 14px 16px; }
}

@media (max-width: 30rem) {
    .box_uNcfI { padding: 0px 16px; }
    .banner_55E1W-ctas { flex-direction: column; }
    .banner_55E1W-ctas .action_ips29 { width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .listing_gYEzi--games { grid-template-columns: 1fr 1fr; }
    .listing_gYEzi--providers { grid-template-columns: repeat(2, 1fr); }

    .logo-mobile { font-size: 15px; }
    .mobile-cta {
        padding: 8px 12px;
        font-size: 12px;
        max-width: 140px;
    }

    .cta-bottom { padding: 48px 16px; }
    .cta-bottom h2 { font-size: 1.75rem; }

    .split-block {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .panel_MsSC9 { padding: 20px 16px; }
    .info-block { padding: 20px 16px; }

    .info-table th,
    .info-table td { padding: 12px 14px; }

    .info-table th { width: 45%; }
}