/*!
 * Stylesheet: Electric Pink
 * Fonts: Oswald / Nunito
 * Date: 2026-08-31T18:56:06.772Z
 */

@import "https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Nunito:wght@400;600&display=swap";

:root {
    --clr-primary: #ec4899;
    --clr-accent: #f9a8d4;
    --clr-primary-alpha: #ec489940;
    --clr-dark: #1a0a14;
    --clr-darker: #0d0509;
    --clr-secondary: #f472b6;
    --clr-text: #fce7f3;
    --clr-muted: #f9a8d4;
    --clr-light: #fdf2f8;
    --clr-secondary-alpha: #f472b640;

    --font-family-heading: 'Oswald', sans-serif;
    --font-family-body: 'Nunito', sans-serif;

    --pad-element: 16px;
    --grid-gap: 12px;
    --pad-section: 40px;
    --border-radius-md: 12px;
    --border-radius-full: 8px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --glow-shadow: 0 0 30px;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.25);
    --elevated-shadow: 0 8px 30px rgba(0,0,0,0.35);
}


/** Base **/

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

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

.skip-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 do-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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



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

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

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

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

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

/* CONTAINER */

.content-wrap_gYkw1 {
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
    padding: 0 48px;
}

/* --- Header --- */

.masthead_VRiE6 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: solid 0 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.masthead_VRiE6 .content-wrap_gYkw1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.masthead_VRiE6 .logo {
    font-family: var(--font-family-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-light);
    letter-spacing: -0.5px;
}

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

.menu_3Rkst {
    display: flex;
    gap: 32px;
}

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

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

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


.btn_gsYJk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-decoration: none;
}

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

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

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

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

.btn_gsYJk--large {
    padding-top: 16px;
    padding-right: 36px;
    padding-bottom: 16px;
    padding-left: 36px;
    font-size: 16px;
}

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


/** Hero **/

.hero_HXYSk {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

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

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

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

.hero_HXYSk-content {
}

.hero_HXYSk-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: 1px solid var(--clr-primary-alpha);
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

/* Stats Bar */

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

.highlight-item {
    text-align: center;
    padding-block: 32px;
    padding-inline: 16px;
    position: relative;
}

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

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

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

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

/*
 * Sections
 */

.area_TUaDG {
    padding: var(--pad-section) 0;
}

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

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

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

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

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

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

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

/* CARDS */

.box_ClbDK {
    background: var(--clr-dark);
    border-radius: 16px;
    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.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.box_ClbDK:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}


/*
 * Bonus Cards
 */

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

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

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

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

.box_ClbDK--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: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* GAME CARDS */

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

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

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

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

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

.box_ClbDK--game:hover .game-thumb img {
    transform: scale(1.05);
}

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

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

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

.box_ClbDK-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* PROVIDER CARDS */

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

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

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

.box_ClbDK--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.box_ClbDK--provider:hover img {
    filter: none;
    transform: scale(1.08);
}

.box_ClbDK--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-muted);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Split Layout --- */

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

.split-block {
    border-radius: 18px;
    padding-top: 40px;
    padding-right: 36px;
    padding-bottom: 40px;
    padding-left: 36px;
}

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

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

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

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

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

.pay-chip:hover {
    background: rgb(255 255 255 / 15%);
}

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

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


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

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(160deg, 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: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

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

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

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

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

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

.box_ClbDK--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: 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: 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-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payments-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.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: 13px;
    color: var(--clr-primary);
}



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

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

.info-row--reverse {
    direction: rtl;
}

.info-row--reverse > * {
    direction: ltr;
}

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

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

.info-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-visual img {
    width: 100%;
    max-width: 380px;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}


/* CTA Blocks */

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

.area_TUaDG--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.3;
}

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

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

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

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

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

/*! SEO Text */

.text-section {
    margin-top: 3rem;
    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.06);
}

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

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

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

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

.seo-content {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

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

.seo-content h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--clr-light);
}

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

/** FAQ **/

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

.faq-item {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.06);
}

.faq-question {
    width: 100%;
    padding-top: 22px;
    padding-right: 0;
    padding-bottom: 22px;
    padding-left: 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 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
    width: 30px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-primary-alpha);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s 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 0.3s 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.7em;
}

/** Info Table **/

.info-table {
    width: 100%;
    max-width: 800px;
    margin: 0 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: solid 1px rgba(255,255,255,0.06);
}

.info-table tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(255,255,255,0.06);
}

.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: 400px;
    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: 800;
    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: 36px;
    position: relative;
}

/* ===== Footer ===== */

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

.footer_1H0wr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer_1H0wr-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer_1H0wr-col p {
    color: rgb(255 255 255 / 50%);
    line-height: 1.7em;
    font-size: 0.875rem;
}

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

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

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

.cert-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px;
    filter: grayscale(80%) brightness(1.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.responsible-text {
    font-size: 14px;
    color: rgb(255 255 255 / 40%);
    margin-bottom: 1.25rem;
}

.gaming-care {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.gaming-care a {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover {
    transform: translateY(-2px);
}

.gaming-care img {
    height: 40px;
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.footer_1H0wr-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

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

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

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

.footer-disclaimer {
    max-width: 700px;
    margin-top: 12px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    opacity: 0.5;
    line-height: 1.6;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1002;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clr-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

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



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

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

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

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

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

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

    .info-row { grid-template-columns: 1fr; }
    .info-row--reverse { direction: ltr; }

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

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

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

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

/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
    .masthead_VRiE6 .content-wrap_gYkw1 {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

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

    .masthead_VRiE6-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu_3Rkst {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--clr-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.3s 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: 0px;
        overflow-y: auto;
    }

    .menu_3Rkst.active {
        right: 0px;
    }

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

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

    .grid_FrinP--bonuses { grid-template-columns: 1fr; }
    .grid_FrinP--games { grid-template-columns: repeat(2, 1fr); }
    .grid_FrinP--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_ClbDK { padding: 24px 20px; }
    .box_ClbDK--review { padding: 20px; }

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

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

@media (max-width: 480px) {
    .content-wrap_gYkw1 { padding: 0 16px; }
    .hero_HXYSk-ctas { flex-direction: column; }
    .hero_HXYSk-ctas .btn_gsYJk { width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .grid_FrinP--games { grid-template-columns: 1fr 1fr; }
    .grid_FrinP--providers { grid-template-columns: repeat(2, 1fr); }

    .logo-mobile { font-size: 0.938rem; }
    .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_ClbDK { padding: 20px 16px; }
    .text-section { padding: 20px 16px; }

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

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