/*
 * Theme: Teal Wave
 * Typography: Futuristic
 */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap');

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

    /* Typography */
    --ff-heading: 'Orbitron', sans-serif;
    --ff-body: 'Titillium Web', sans-serif;

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

    /* Border Radius */
    --r-md: 16px;
    --r-sm: 4px;
    --r-full: 100px;
    --r-lg: 24px;

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

/* ==================== BASE ==================== */

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

.skip-to-main {
    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(--r-md);
    z-index: 10000;
    transition: top 0.3s ease-out;
}

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

@keyframes run-slideUp {
    0% { opacity: 0; transform: translateY(1.5rem); }
    100% { opacity: 1; transform: translateY(0); }
}



html {
    scroll-behavior: smooth;
}

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

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

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


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

/* ==================== HEADER ==================== */

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

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

.top-bar_6sqgP .box_lV8QG {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar_6sqgP .logo {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: none;
    letter-spacing: 0.05em;
}

.main-nav_U15tW {
    display: flex;
    gap: 2rem;
}

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

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

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

/* Buttons */

.cta_lzhx3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.3s ease-out;
    text-transform: none;
    letter-spacing: 0.03em;
}

.cta_lzhx3--primary {
    background: var(--theme-primary);
    border: none;
    color: #ffffff;
}

.cta_lzhx3--primary:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-elevated);
}

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

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

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

.cta_lzhx3--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 14px;
}

/* HERO */

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

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

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

.showcase_9Np7p-content {
}

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

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

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

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

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

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

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

.showcase_9Np7p-feature span {
    font-size: 19px;
}

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

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


/* -- SECTIONS -- */

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

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

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

/** Cards **/

.tile_RF460 {
    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(--r-lg);
    padding: var(--spacing-element);
    transition: all 0.3s ease-out;
}

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

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

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

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

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

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

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

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

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

.tile_RF460--game:hover img {
    transform: scale(1.03) rotate(1deg);
}

.tile_RF460-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

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

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

.tile_RF460-name {
    font-weight: 600;
    color: #fff;
}

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

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

.tile_RF460--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-out;
}

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

.tile_RF460--provider span {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-muted);
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

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

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

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

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

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

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

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

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



.content-pairs {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.pair-row--reversed {
    direction: rtl;
}

.pair-row--reversed > * {
    direction: ltr;
}

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

.pair-content p {
    color: var(--theme-muted);
    margin-bottom: 1rem;
    line-height: 180%;
}

.pair-image {
    display: flex;
    place-content: center;
    place-items: center;
}

.pair-image img {
    width: 100%;
    max-width: 380px;
    max-height: 320px;
    object-fit: contain;
}

/* CTA Blocks */

.area_jtbv6--cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(125deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.area_jtbv6--cta .cta_lzhx3 {
    position: relative;
    background: #ffffff;
    color: var(--theme-primary);
}

.area_jtbv6--cta .cta_lzhx3:hover {
    background: var(--theme-dark);
    color: rgb(255, 255, 255);
}

/* ===== Payments Table ===== */

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

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

.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 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-top: 4px;
    padding-right: 12px;
    padding-bottom: 4px;
    padding-left: 12px;
    background: var(--theme-primary-alpha);
    border-radius: var(--r-full);
    font-size: 13px;
    color: var(--theme-accent);
}

/* --- SEO Text --- */

.content-block {
    margin-top: 3rem;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--r-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

.content-block p {
    color: var(--theme-muted);
    margin-bottom: 16px;
    line-height: 180%;
}

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

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

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

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.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: 190%;
}

/** FAQ **/

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    border-radius: var(--r-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 0.3s 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.3s ease-out;
}

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

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

.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: 900px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--r-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-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_dcj9v {
    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: rgba(255,255,255,0.05);
}

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

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

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

.colophon_dcj9v-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badges img {
    height: 50px;
    filter: grayscale(80%) brightness(1.5);
    transition: all 0.3s ease-out;
}

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

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

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

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

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

.safe-play a {
    display: block;
    transition: all 0.3s ease-out;
}

.safe-play a:hover {
    transform: scale(1.05);
}

.safe-play img {
    height: 40px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.3s ease-out;
}

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

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

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

.colophon_dcj9v-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.6em;
}


.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: 28px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 0.3s ease-out;
    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;
}

/*! Responsive - Tablet */

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

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

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

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

    .pair-row { grid-template-columns: 1fr; }
    .pair-row--reversed { direction: ltr; }

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

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

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

/* --- Responsive - Mobile --- */

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

    .top-bar_6sqgP .box_lV8QG {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 0.75rem;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--ff-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--theme-accent);
        text-transform: capitalize;
        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: uppercase;
        text-decoration: none;
        letter-spacing: 0.3px;
        border-radius: var(--r-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

    .top-bar_6sqgP-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav_U15tW {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 380px;
        height: 100vh;
        background: var(--theme-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.3s ease-out;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0;
    }

    .main-nav_U15tW.active {
        right: 0;
    }

    .main-nav_U15tW a {
        font-size: 19px;
        padding: 1rem 0px;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }

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

    .items_GOMgN--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_jtbv6-title { font-size: 2rem; }
    .showcase_9Np7p-content h1 { font-size: 2.5rem; }
    .showcase_9Np7p { padding-top: 100px; }
}

@media (max-width: 500px) {
    .box_lV8QG { padding: 0 16px; }
    .area_jtbv6 { padding: 60px 0; }
    .showcase_9Np7p-ctas { flex-direction: column; }
    .showcase_9Np7p-ctas .cta_lzhx3 { width: 100%; }

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