/* Auto-generated stylesheet | Deep Violet | Clean Geometric */

@import "https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap";

:root {
    /* Colors */
    --theme-secondary: #a78bfa;
    --theme-dark: #1e1033;
    --theme-light: #f5f3ff;
    --theme-secondary-alpha: #a78bfa40;
    --theme-darker: #0f0819;
    --theme-primary: #8b5cf6;
    --theme-text: #ede9fe;
    --theme-muted: #c4b5fd;
    --theme-primary-alpha: #8b5cf640;
    --theme-accent: #c4b5fd;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --element-spacing: 30px;
    --gap: 25px;
    --section-padding: 70px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-full: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-card: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px;
}

/*! Base */

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

.acc-skip {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--theme-primary);
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-skip:focus {
    top: 10px;
    outline: 3px solid var(--theme-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--theme-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 run-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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



html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--theme-darker);
    color: var(--theme-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

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

/* ===== Container ===== */

.inner_3WaaL {
    max-width: 1200px;
    margin: 0 auto;
    padding-block: 0;
    padding-inline: 24px;
}

/* Header */

.nav-wrap_HymIE {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding-block: 16px;
    padding-inline: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrap_HymIE.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0px;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrap_HymIE .inner_3WaaL {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap_HymIE .logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: none;
    letter-spacing: 1.5px;
}

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

.nav_PGJfs a {
    font-weight: 500;
    color: var(--theme-text);
    opacity: 0.8;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_PGJfs a:hover {
    opacity: 1;
    color: var(--theme-accent);
}

.nav-wrap_HymIE-actions {
    display: flex;
    gap: 0.75rem;
}

/** Buttons **/

.link-btn_saDar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link-btn_saDar--primary {
    background: transparent;
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
}

.link-btn_saDar--primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    background: var(--theme-primary);
    color: #fff;
}

.link-btn_saDar--secondary {
    background: transparent;
    border: 2px solid var(--theme-text);
    color: var(--theme-text);
}

.link-btn_saDar--secondary:hover {
    background: var(--theme-text);
    color: var(--theme-dark);
}

.link-btn_saDar--large {
    padding: 18px 40px;
    font-size: 17px;
}

.link-btn_saDar--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 0.875rem;
}

/*! Hero */

.hero_KFavc {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
    background: linear-gradient(to right, var(--theme-dark) 0%, var(--theme-darker) 50%, var(--theme-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero_KFavc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, var(--theme-primary-alpha) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--theme-secondary-alpha) 0%, transparent 40%);
    pointer-events: none;
}

.hero_KFavc .inner_3WaaL {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero_KFavc-content {
}

.hero_KFavc-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--theme-primary-alpha);
    border: 1px solid var(--theme-primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-accent);
    margin-bottom: 24px;
}

.hero_KFavc-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero_KFavc-subtitle {
    font-size: 20px;
    color: var(--theme-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero_KFavc-subtitle strong {
    color: var(--theme-accent);
}

.hero_KFavc-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero_KFavc-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero_KFavc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--theme-muted);
}

.hero_KFavc-feature span {
    font-size: 1.188rem;
}

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

.hero_KFavc-image img {
    width: 100%;
    max-width: 450px;
    max-height: 480px;
    object-fit: contain;
}

/* ==================== SECTIONS ==================== */

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

.section_hhkZL-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.section_hhkZL-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--theme-muted);
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/** Cards **/

.panel_pb9n7 {
    background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--element-spacing);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.panel_pb9n7:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-elevated);
    border-color: var(--theme-primary);
}

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

.panel_pb9n7--bonus {
    text-align: center;
    padding: 40px 30px;
}

.panel_pb9n7-icon {
    font-size: 56px;
    margin-bottom: 1.25rem;
}

.panel_pb9n7--bonus h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--theme-accent);
}

.panel_pb9n7--bonus p {
    color: var(--theme-muted);
    margin-bottom: 1.5rem;
    line-height: 170%;
}

.items_Z8Mzf--games {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}

.panel_pb9n7--game {
    position: relative;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.panel_pb9n7--game:hover img {
    transform: scale(1.07);
}

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

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

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

.panel_pb9n7-name {
    font-weight: 600;
    color: #ffffff;
}

.items_Z8Mzf--providers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}

.panel_pb9n7--provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 2.5/1;
    position: relative;
}

.panel_pb9n7--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.panel_pb9n7--provider:hover img {
    filter: brightness(1) contrast(1);
    transform: scale(1.06);
}

.panel_pb9n7--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--theme-muted);
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.reviewer-avatar {
    width: 52px;
    height: 54px;
    border-radius: 40%;
    background: linear-gradient(125deg, var(--theme-primary), var(--theme-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: white;
}

.reviewer-info strong {
    display: block;
    color: rgb(255, 255, 255);
}

.stars {
    color: var(--theme-accent);
    font-size: 0.875rem;
}

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


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

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

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

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

.zigzag-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--theme-accent);
}

.zigzag-content p {
    color: var(--theme-muted);
    margin-bottom: 1rem;
    line-height: 1.8em;
}

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

.zigzag-image img {
    width: 100%;
    max-width: 420px;
    max-height: 280px;
    object-fit: contain;
}

/*! CTA Blocks */

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

.section_hhkZL--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

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

.section_hhkZL--cta .link-btn_saDar {
    position: relative;
    background: rgb(255, 255, 255);
    color: var(--theme-primary);
}

.section_hhkZL--cta .link-btn_saDar:hover {
    background: var(--theme-dark);
    color: rgb(255, 255, 255);
}

/* ==================== PAYMENTS TABLE ==================== */

.payments-table-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

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

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

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

.payments-table th {
    font-weight: 600;
    color: var(--theme-accent);
    text-transform: capitalize;
    font-size: 13px;
    letter-spacing: 0.8px;
}

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgba(255,255,255,0.05);
    transition: background 250ms 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-top: 4px;
    padding-right: 12px;
    padding-bottom: 4px;
    padding-left: 12px;
    background: var(--theme-primary-alpha);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--theme-accent);
}

/*
 * SEO Text
 */

.text-section {
    margin-top: 48px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.05);
}

.text-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--theme-accent);
}

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

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

.section_hhkZL--seo-text {
    background: var(--theme-dark);
}

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

.seo-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.seo-content h3 {
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--theme-accent);
}

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


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

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: var(--theme-accent);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--theme-primary);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.faq-answer p {
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    color: var(--theme-muted);
    line-height: 180%;
}

/** Info Table **/

.info-table {
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--theme-accent);
    background: rgba(255, 255, 255, 0.02);
}

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

/** Footer **/

.site-footer_JRpdY {
    background: var(--theme-darker);
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    border: rgba(255,255,255,0.05) 1px 0 0 0 solid;
}

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

.site-footer_JRpdY-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--theme-accent);
}

.site-footer_JRpdY-col p {
    color: var(--theme-muted);
    line-height: 1.8;
}

.site-footer_JRpdY-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer_JRpdY-nav a {
    color: var(--theme-muted);
}

.site-footer_JRpdY-nav a:hover {
    color: var(--theme-accent);
}

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

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

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

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

.responsible-gaming h4 {
    font-size: 16px;
    margin-bottom: 0.75rem;
    color: var(--theme-muted);
}

.responsible-text {
    font-size: 14px;
    color: var(--theme-muted);
    opacity: 0.8;
    margin-bottom: 20px;
}

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

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

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

.gaming-care img {
    height: 40px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover img {
    filter: none;
    opacity: 1;
}

.site-footer_JRpdY-bottom {
    padding-block: 24px;
    padding-inline: 0;
    text-align: center;
}

.site-footer_JRpdY-bottom p {
    font-size: 14px;
    color: var(--theme-muted);
    opacity: 0.7;
    margin-bottom: 8px;
}

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

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

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

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

/* -- HAMBURGER & MOBILE -- */

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

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

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


@media (max-width: 63.9375em) {
    .hero_KFavc .inner_3WaaL {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero_KFavc-content { order: 1; }
    .hero_KFavc-image { order: 2; }
    .hero_KFavc-subtitle { margin-left: auto; margin-right: auto; }
    .hero_KFavc-ctas { justify-content: center; }
    .hero_KFavc-features { justify-content: center; }

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

    .items_Z8Mzf--reviews { grid-template-columns: 1fr 1fr; }

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

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

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

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

/* -- RESPONSIVE - MOBILE -- */

@media (max-width: 767px) {
    .nav-wrap_HymIE {
        padding: 0px;
    }

    .nav-wrap_HymIE .inner_3WaaL {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 12px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--font-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--theme-accent);
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 180px;
        padding: 10px 16px;
        background: linear-gradient(170deg, var(--theme-primary), var(--theme-secondary));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.3px;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

    .nav-wrap_HymIE-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav_PGJfs {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--theme-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 250ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0;
    }

    .nav_PGJfs.active {
        right: 0;
    }

    .nav_PGJfs a {
        font-size: 1.188rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .items_Z8Mzf--bonuses,
    .items_Z8Mzf--games,
    .items_Z8Mzf--reviews {
        grid-template-columns: 1fr;
    }

    .items_Z8Mzf--providers {
        grid-template-columns: repeat(2, 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;
    }

    .section_hhkZL-title { font-size: 2rem; }
    .hero_KFavc-content h1 { font-size: 2.5rem; }
    .hero_KFavc { padding-top: 100px; }
}

@media (max-width: 30rem) {
    .inner_3WaaL { padding: 0 16px; }
    .section_hhkZL { padding: 60px 0px; }
    .hero_KFavc-ctas { flex-direction: column; }
    .hero_KFavc-ctas .link-btn_saDar { width: 100%; }

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