/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Deep Violet
 * Typography: Bold Impact
 * Generated: 2026-03-13T18:43:07.730Z
 */

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

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

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

    --spacing-element: 16px;
    --spacing-section: 40px;
    --spacing-gap: 12px;
    --rad-lg: 8px;
    --rad-full: 4px;
    --rad-md: 6px;
    --rad-sm: 4px;
    --shadow-elevated: 0 15px 50px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 50px;
    --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
}

/* ===== Base ===== */

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

.jump-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--theme-primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-md);
    z-index: 10000;
    transition: top 0.35s ease-out;
}

.jump-link: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;
    }
}


@keyframes fadeIn-fx {
    from { opacity: 0; }
    to { opacity: 1; }
}

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



html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-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-family-heading);
    font-weight: 700;
    line-height: 1.2em;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease-out;
}

/* -- CONTAINER -- */

.content-wrap_tT2F9 {
    max-width: 1280px;
    margin: 0 auto;
    padding-block: 0;
    padding-inline: 24px;
}

/* HEADER */

.nav-wrap_AVCFh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    z-index: 1000;
    padding: 16px 0px 16px 0;
    background: rgb(0 0 0 / 85%);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease-out;
}

.nav-wrap_AVCFh.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding-block: 12px;
    padding-inline: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-wrap_AVCFh .logo {
    font-family: var(--font-family-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.navigation_ZBExR a {
    font-weight: 500;
    color: var(--theme-text);
    opacity: 0.8;
    transition: all 0.35s ease-out;
}

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

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

/*! Buttons */

.button_cdyYH {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--font-family-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--rad-md);
    cursor: pointer;
    transition: all 0.35s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button_cdyYH--primary {
    background: var(--theme-primary);
    border: none;
    box-shadow: 0 0 20px var(--theme-primary-alpha);
    color: #fff;
}

.button_cdyYH--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

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

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

.button_cdyYH--large {
    padding-block: 18px;
    padding-inline: 40px;
    font-size: 17px;
}

.button_cdyYH--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 0.875rem;
}

/* -- HERO -- */

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

.showcase_GIGIX::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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;
}

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

.showcase_GIGIX-content {
    order: 2;
}

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

.showcase_GIGIX-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);
}

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

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

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

.showcase_GIGIX-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

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

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

/* ===== Sections ===== */

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

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

.area_D0q3Z-subtitle {
    text-align: center;
    font-size: 1.063rem;
    color: var(--theme-muted);
    margin-bottom: 48px;
    max-width: 640px;
    margin-inline: auto;
}

/* ===== Cards ===== */

.card_JeZOX {
    background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255,255,255,0.02) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--rad-lg);
    padding: var(--spacing-element);
    transition: all 0.35s ease-out;
}

.card_JeZOX:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--theme-primary);
}

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

.card_JeZOX--bonus {
    text-align: center;
    padding-block: 40px;
    padding-inline: 30px;
}

.card_JeZOX-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.card_JeZOX--bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--theme-accent);
}

.card_JeZOX--bonus p {
    color: var(--theme-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

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

.card_JeZOX--game:hover img {
    transform: scale(1.06);
}

.card_JeZOX-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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

.card_JeZOX-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));
}

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

.items_FzB5k--providers {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-gap);
}

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

.card_JeZOX--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: saturate(0) brightness(1.8);
    transition: all 0.35s ease-out;
}

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

.card_JeZOX--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--theme-muted);
    text-align: center;
    background: linear-gradient(transparent, rgb(0 0 0 / 60%));
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

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

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

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

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

.reviewer-avatar {
    width: 48px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(170deg, var(--theme-primary), var(--theme-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

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

.stars {
    color: var(--theme-accent);
    font-size: 14px;
}

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

/* About / Content Layout */

.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: 1.25rem;
    color: var(--theme-accent);
}

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

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

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

/* --- CTA Blocks --- */

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

.area_D0q3Z--cta::before {
    content: '';
    position: absolute;
    inset: 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.25;
}

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

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

.area_D0q3Z--cta .button_cdyYH {
    position: relative;
    background: rgb(255, 255, 255);
    color: var(--theme-primary);
}

.area_D0q3Z--cta .button_cdyYH:hover {
    background: var(--theme-dark);
    color: #ffffff;
}

/* --- Payments Table --- */

.payments-table-wrap {
    overflow-x: auto;
    margin-bottom: 40px;
}

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.02);
    border-radius: var(--rad-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: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

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

.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(--theme-primary-alpha);
    border-radius: var(--rad-full);
    font-size: 0.813rem;
    color: var(--theme-accent);
}

/** SEO Text **/

.seo-text {
    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(--rad-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

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

/* -- FAQ -- */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    border-radius: var(--rad-md);
    margin-bottom: 12px;
    overflow: hidden;
    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: rgb(255,255,255);
    text-align: left;
    transition: all 0.35s ease-out;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--theme-primary);
    transition: transform 0.35s ease-out;
}

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

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

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

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


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

.info-table tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
}

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

.info-table th,
.info-table td {
    padding-block: 20px;
    padding-inline: 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 ===== */

.colophon_JLw33 {
    background: var(--theme-darker);
    padding-top: 80px;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

.badge-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-strip img {
    height: 50px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 0.35s ease-out;
}

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

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

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

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

.responsible-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.responsible-logos a {
    display: block;
    transition: all 0.35s ease-out;
}

.responsible-logos a:hover {
    transform: translateY(-2px) scale(1.01);
}

.responsible-logos img {
    height: 40px;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 0.35s ease-out;
}

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

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

.colophon_JLw33-bottom p {
    font-size: 0.875rem;
    color: var(--theme-muted);
    opacity: 0.7;
    margin-bottom: 8px;
}

.colophon_JLw33-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: 12px auto 0;
    opacity: 0.5;
    line-height: 160%;
}

/*
 * Hamburger & Mobile
 */

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

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 0.35s ease-out;
    border-radius: 2px;
}

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

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

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

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

/* -- RESPONSIVE - TABLET -- */

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

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

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

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

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

    .colophon_JLw33-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .badge-strip { justify-content: center; }
}

/* Responsive - Mobile */

@media (max-width: 47.9375rem) {
    .nav-wrap_AVCFh {
        padding: 0;
    }

    .nav-wrap_AVCFh .content-wrap_tT2F9 {
        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-family-heading);
        font-size: 1.063rem;
        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(45deg, var(--theme-primary), var(--theme-secondary));
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.03em;
        border-radius: var(--rad-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

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

    .hamburger {
        display: flex;
    }

    .navigation_ZBExR {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--theme-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.35s ease-out;
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0px;
    }

    .navigation_ZBExR.active {
        right: 0;
    }

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

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

    .items_FzB5k--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;
    }

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

@media (max-width: 30em) {
    .content-wrap_tT2F9 { padding: 0px 16px; }
    .area_D0q3Z { padding: 60px 0; }
    .showcase_GIGIX-ctas { flex-direction: column; }
    .showcase_GIGIX-ctas .button_cdyYH { width: 100%; }

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