/*!
 * Stylesheet: Teal Wave
 * Fonts: Poppins / Open Sans
 * Date: 2026-08-10T16:57:41.011Z
 */

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

:root {
    /* Colors */
    --text: #ccfbf1;
    --muted: #5eead4;
    --accent: #5eead4;
    --darker: #021716;
    --primary-alpha: #14b8a640;
    --secondary-alpha: #2dd4bf40;
    --primary: #14b8a6;
    --light: #f0fdfa;
    --secondary: #2dd4bf;
    --dark: #042f2e;

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

    /* Spacing */
    --sp-gap: 12px;
    --sp-section: 40px;
    --sp-element: 16px;

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

    /* Shadows */
    --card-shadow: 0 4px 20px rgba(0,0,0,0.25);
    --elevated-shadow: 0 8px 30px rgba(0,0,0,0.35);
    --glow-shadow: 0 0 30px;
}


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

.skip-nav {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-md);
    z-index: 10000;
    transition: top 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--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 {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes go-slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    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(--body-font);
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ==================== CONTAINER ==================== */

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



.masthead_HLKwu {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0px 16px 0;
    background: rgb(0 0 0 / 85%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.masthead_HLKwu .container_xXeRj {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.menu_CM1UU a {
    font-weight: 500;
    color: var(--text);
    opacity: 0.8;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


/* BUTTONS */

.action_V9BVj {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rad-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.action_V9BVj--primary:hover {
    transform: scale(1.02);
    box-shadow: var(--elevated-shadow);
    background: var(--primary);
    color: #fff;
}

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

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

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

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


/* HERO */

.intro_GGeCW {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(90deg, var(--dark) 0%, var(--darker) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

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

.intro_GGeCW .container_xXeRj {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro_GGeCW-content {
    order: 2;
}

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

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

.intro_GGeCW-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

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

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

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

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

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

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

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

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

.zone_rm8BS-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Cards --- */

.panel_ysvA0 {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    border-radius: var(--rad-lg);
    padding: var(--sp-element);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel_ysvA0:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--elevated-shadow);
    border-color: var(--primary);
}

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

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

.panel_ysvA0-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.panel_ysvA0--bonus h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent);
}

.panel_ysvA0--bonus p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7em;
}

.grid_dwFvT--games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-gap);
}

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

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

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

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

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

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

.panel_ysvA0-name {
    font-weight: 600;
    color: #FFF;
}

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

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

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

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

.panel_ysvA0--provider span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    background: linear-gradient(transparent, rgb(0 0 0 / 60%));
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.reviewer-info strong {
    display: block;
    color: #FFF;
}

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

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

/* -- ABOUT / CONTENT LAYOUT -- */

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

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

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

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

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

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


/* ==================== CTA BLOCKS ==================== */

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

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

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

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

.zone_rm8BS--cta .action_V9BVj {
    position: relative;
    background: #FFFFFF;
    color: var(--primary);
}

.zone_rm8BS--cta .action_V9BVj:hover {
    background: var(--dark);
    color: rgb(255,255,255);
}


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

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

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

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

.payments-table th {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.813rem;
    letter-spacing: 0.03em;
}

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgba(255,255,255,0.05);
    transition: background 0.25s 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-block: 4px;
    padding-inline: 12px;
    background: var(--primary-alpha);
    border-radius: var(--rad-full);
    font-size: 13px;
    color: var(--accent);
}

/*
 * SEO Text
 */

.section-content {
    margin-top: 48px;
    padding: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    border: rgb(255 255 255 / 5%) solid 1px;
}

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

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

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

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

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

.seo-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: rgb(255,255,255);
}

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

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


/* ===== FAQ ===== */

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

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

.faq-question {
    width: 100%;
    padding: 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: white;
    text-align: left;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

/*! Info Table */

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

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

/** Footer **/

.end-section_9q54t {
    background: var(--darker);
    padding-top: 80px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.05);
}

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

.end-section_9q54t-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.end-section_9q54t-col p {
    color: var(--muted);
    line-height: 1.8em;
}

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

.end-section_9q54t-nav a {
    color: var(--muted);
}

.end-section_9q54t-nav a:hover {
    color: var(--accent);
}

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

.trust-seals img {
    height: 50px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.resp-logos a {
    display: block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.resp-logos a:hover {
    transform: translateY(-4px);
}

.resp-logos img {
    height: 40px;
    filter: saturate(0) brightness(1.8);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.resp-logos a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

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

.end-section_9q54t-bottom p:last-child {
    margin-bottom: 0px;
}

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

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

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

/* -- HAMBURGER & MOBILE -- */

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

.toggle-btn span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

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


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

@media (max-width: 63.9375rem) {
    .intro_GGeCW .container_xXeRj {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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



@media (max-width: 48em) {
    .masthead_HLKwu {
        padding: 0;
    }

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

    .logo {
        display: none;
    }

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

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

    .masthead_HLKwu-actions {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .menu_CM1UU {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 380px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.7);
        border-left: 2px solid var(--primary);
        z-index: 1001;
        gap: 0px;
    }

    .menu_CM1UU.active {
        right: 0;
    }

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

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

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

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

@media (max-width: 29.9375em) {
    .container_xXeRj { padding: 0px 16px; }
    .zone_rm8BS { padding: 60px 0; }
    .intro_GGeCW-ctas { flex-direction: column; }
    .intro_GGeCW-ctas .action_V9BVj { width: 100%; }

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