/*!
 * Stylesheet: Crimson & Black
 * Fonts: Anton / Roboto
 * Date: 2026-08-19T17:04:05.128Z
 */

@import 'https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap';

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

    /* Typography */
    --ff-body: 'Roboto', sans-serif;
    --ff-heading: 'Anton', sans-serif;

    /* Spacing */
    --sp-section: 50px;
    --sp-element: 20px;
    --sp-gap: 20px;

    /* Border Radius */
    --rad-lg: 28px;
    --rad-full: 50px;
    --rad-sm: 12px;
    --rad-md: 20px;

    /* Shadows */
    --shadow-glow: 0 0 50px;
    --shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
}


/* BASE */

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

.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--clr-primary);
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-full);
    z-index: 10000;
    transition: top 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.skip-to-main: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 fadeIn-anim {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-in {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}


.content-wrap_g6a2I {
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px;
}

/* -- HEADER -- */

.site-header_vFYyw {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-header_vFYyw .content-wrap_g6a2I {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

.navigation_LsoQ0 {
    display: flex;
    gap: 2rem;
}

.navigation_LsoQ0 a {
    font-weight: 500;
    color: var(--clr-muted);
    font-size: 14px;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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



.button_ouNLj {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--ff-body);
    font-size: 0.938rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.button_ouNLj--primary {
    background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 4px 14px var(--clr-primary-alpha);
}

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

.button_ouNLj--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-light);
}

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

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

.button_ouNLj--small {
    padding: 8px 20px;
    font-size: 0.813rem;
}

/* -- HERO -- */

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

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

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

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

.hero_QqsCu-content {
    order: 2;
}

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

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

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

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

.hero_QqsCu-subtitle {
    font-size: 17px;
    color: var(--clr-muted);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7em;
}

.hero_QqsCu-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

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


/* Stats Bar */

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1220px;
    margin-inline: auto;
    padding: 0 48px 80px;
}

.key-stat {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.key-stat: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(--ff-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-light);
    letter-spacing: -0.5px;
}

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

.stat-text {
    font-size: 0.813rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}

/* SECTIONS */

.block_ESZbn {
    padding: var(--sp-section) 0;
}

.block_ESZbn--gray {
    background: rgba(255,255,255,0.04);
}

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

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

.block_ESZbn-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -1px;
    margin-bottom: 14px;
}

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

.block_ESZbn-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.block_ESZbn-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--clr-muted);
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}



.box_iGsse {
    background: var(--clr-dark);
    border-radius: 18px;
    padding-block: 32px;
    padding-inline: 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.box_iGsse:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}


/* BONUS CARDS */

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

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

.box_iGsse--bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    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: 0.75rem;
}

.box_iGsse--bonus h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.63rem;
    color: var(--clr-light);
}

.box_iGsse--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: 5px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}


/* GAME CARDS */

.listing_4Slfe--games {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

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

.box_iGsse--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-out;
}

.box_iGsse--game:hover .game-thumb img {
    transform: scale(1.1);
}

.game-info {
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 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);
}

.box_iGsse-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.box_iGsse-info {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

.box_iGsse-name {
    font-weight: 600;
    color: #FFFFFF;
}

/* -- PROVIDER CARDS -- */

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

.box_iGsse--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

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

.box_iGsse--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: saturate(0) brightness(1.8);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.box_iGsse--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--clr-muted);
    text-align: center;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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


/** Split Layout **/

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

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

.split-block--dark {
    background: var(--clr-darker);
    color: #FFFFFF;
}

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

.split-block--dark h2 {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 12px 0 28px;
}

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

.pay-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    color: rgb(255 255 255 / 75%);
    font-weight: 500;
    transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.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 0 28px;
}

/* ==================== REVIEWS ==================== */

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

.box_iGsse--review {
    padding: 28px;
}

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

.reviewer-avatar {
    width: 48px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
}

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

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

.review-item {
    padding: 1.25rem 0px;
    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: #f5a623;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

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

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

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

/** Payments Table **/

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

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    text-align: left;
}

.payments-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.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 solid rgba(255,255,255,0.05);
    transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.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-block: 4px;
    padding-inline: 12px;
    background: var(--clr-primary-alpha);
    border-radius: var(--rad-full);
    font-size: 13px;
    color: var(--clr-primary);
}

/* -- ABOUT -- */

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.split-row--flipped {
    direction: rtl;
}

.split-row--flipped > * {
    direction: ltr;
}

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

.split-text p {
    color: var(--clr-muted);
    margin-bottom: 1rem;
    line-height: 1.8em;
}

.split-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-media img {
    width: 100%;
    max-width: 450px;
    max-height: 320px;
    object-fit: contain;
    border-radius: var(--rad-lg);
}

/*! CTA Blocks */

.block_ESZbn--cta {
    text-align: center;
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    background: linear-gradient(to bottom, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.block_ESZbn--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

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

.block_ESZbn--cta p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    position: relative;
}

.block_ESZbn--cta .button_ouNLj {
    position: relative;
    background: #FFFFFF;
    color: var(--clr-primary);
}

.block_ESZbn--cta .button_ouNLj:hover {
    background: rgba(255,255,255,0.2);
    color: #FFFFFF;
}



.about-text {
    margin-top: 48px;
    padding: 36px;
    background: var(--clr-dark);
    border-radius: var(--rad-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.about-text p {
    color: var(--clr-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

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

.seo-content {
    max-width: 920px;
    margin-inline: 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.9em;
}

/* FAQ */

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

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

.faq-question {
    width: 100%;
    padding: 22px 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 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-primary-alpha);
    display: flex;
    place-content: center;
    place-items: center;
    color: var(--clr-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/** Info Table **/

.info-table {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: var(--clr-dark);
    border-radius: var(--rad-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-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
}

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

.info-table th,
.info-table td {
    padding: 18px 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: -1px;
    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: 1.063rem;
    margin-bottom: 2.25rem;
    position: relative;
}


.site-footer_A5d4m {
    background: var(--clr-darker);
    padding: 60px 0 0;
}

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

.site-footer_A5d4m-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.site-footer_A5d4m-col p {
    color: rgb(255 255 255 / 50%);
    line-height: 1.7;
    font-size: 14px;
}

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

.site-footer_A5d4m-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.site-footer_A5d4m-nav a:hover {
    color: #FFFFFF;
}

.trust-seals {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-seals img {
    height: 50px;
    filter: grayscale(100%);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-seals img:hover {
    filter: saturate(1) brightness(1);
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding: 40px 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
}

.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: 1.25rem;
}

.safe-play {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.safe-play a {
    display: block;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.safe-play a:hover {
    transform: translateY(-3px) scale(1.02);
}

.safe-play img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.safe-play a:hover img {
    filter: none;
    opacity: 1;
}

.site-footer_A5d4m-bottom {
    padding: 24px 0;
    text-align: center;
}

.site-footer_A5d4m-bottom p {
    font-size: 13px;
    color: rgb(255 255 255 / 40%);
    margin-bottom: 0.5rem;
}

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

.footer-update {
    margin-top: 1rem;
    opacity: 0.6;
}

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

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


.mobile-nav-btn {
    display: none;
    flex-direction: column;
    gap: 0.31rem;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1002;
}

.mobile-nav-btn span {
    width: 24px;
    height: 2px;
    background: var(--clr-light);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.mobile-nav-btn.active span:nth-child(2) {
    opacity: 0;
}

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

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


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

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

    .content-wrap_g6a2I { padding-left: 32px; padding-right: 32px; }

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

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

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

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

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

    .site-footer_A5d4m-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .trust-seals { justify-content: center; }
}



@media (max-width: 47.9375rem) {
    .site-header_vFYyw .content-wrap_g6a2I {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--ff-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: #FFFFFF;
        font-size: 0.813rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--clr-primary-alpha);
    }

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

    .mobile-nav-btn {
        display: flex;
    }

    .navigation_LsoQ0 {
        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 300ms cubic-bezier(0.4, 0, 0.2, 1);
        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;
    }

    .navigation_LsoQ0.active {
        right: 0px;
    }

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

    .hero_QqsCu { padding-top: 48px; padding-bottom: 32px; }
    .hero_QqsCu-content h1 { font-size: 2rem; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .block_ESZbn { padding: 60px 0; }
    .content-wrap_g6a2I { padding: 0 20px; }
    .block_ESZbn-title { font-size: 1.75rem; }
    .block_ESZbn-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; }

    .listing_4Slfe--bonuses { grid-template-columns: 1fr; }
    .listing_4Slfe--games { grid-template-columns: repeat(2, 1fr); }
    .listing_4Slfe--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; }

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

    .about-text { padding: 24px 20px; }

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

@media (max-width: 480px) {
    .content-wrap_g6a2I { padding: 0 16px; }
    .hero_QqsCu-ctas { flex-direction: column; }
    .hero_QqsCu-ctas .button_ouNLj { width: 100%; }
    .highlights {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .listing_4Slfe--games { grid-template-columns: 1fr 1fr; }
    .listing_4Slfe--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;
    }

    .box_iGsse { padding: 20px 16px; }
    .about-text { padding: 20px 16px; }

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

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