

@import "https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap";

:root {
    /* Colors */
    --clr-dark: #1a1505;
    --clr-secondary: #eab308;
    --clr-primary-alpha: #ca8a0440;
    --clr-light: #fefce8;
    --clr-text: #fef08a;
    --clr-primary: #ca8a04;
    --clr-muted: #facc15;
    --clr-secondary-alpha: #eab30840;
    --clr-darker: #0d0b02;
    --clr-accent: #fde047;

    /* Typography */
    --typo-heading: 'Russo One', sans-serif;
    --typo-body: 'Lato', sans-serif;

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

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

    /* Shadows */
    --box-shadow-elevated: 0 15px 50px rgba(0,0,0,0.5);
    --box-shadow-card: 0 8px 40px rgba(0,0,0,0.4);
    --box-shadow-glow: 0 0 50px;
}


/* --- Base --- */

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

.bypass-block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: var(--clr-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-in-out;
}

.bypass-block:focus {
    top: 10px;
    outline: 3px solid var(--clr-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--clr-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ANIMATIONS */

@keyframes run-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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

@keyframes shimmer-up {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


html {
    scroll-behavior: smooth;
}

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

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

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

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


/*
 * Container
 */

.wrapper_7T9gN {
    max-width: 1320px;
    margin-inline: auto;
    padding: 0 24px;
}

/** Header **/

.header_ghlr1 {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 16px 0 16px 0px;
    background: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease-in-out;
}

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

.header_ghlr1 .wrapper_7T9gN {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.navigation_9Fa7s a {
    font-weight: 500;
    color: var(--clr-text);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

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

.header_ghlr1-actions {
    display: flex;
    gap: 12px;
}

/** Buttons **/

.btn_fbdvS {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--typo-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: none;
    letter-spacing: 0.05em;
}

.btn_fbdvS--primary {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    border: none;
    color: #fff;
}

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

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

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

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

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

/* Hero */

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

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

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

.showcase_RC6tx-content {
    order: 2;
}

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

.showcase_RC6tx-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.showcase_RC6tx-subtitle {
    font-size: 20px;
    color: var(--clr-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.showcase_RC6tx-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

.showcase_RC6tx-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--clr-muted);
}

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

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

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

/** Sections **/

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

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

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

/** Cards **/

.tile_hs727 {
    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(--element-space);
    transition: all 0.3s ease-in-out;
}

.tile_hs727:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-elevated);
    border-color: var(--clr-primary);
}

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

.tile_hs727--bonus {
    text-align: center;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
}

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

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

.tile_hs727--bonus p {
    color: var(--clr-muted);
    margin-bottom: 24px;
    line-height: 170%;
}

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

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

.tile_hs727--game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-in-out;
}

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

.tile_hs727-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

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

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

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

.collection_mwqNp--providers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--item-gap);
}

.tile_hs727--provider {
    display: flex;
    place-content: center;
    place-items: center;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 5/2;
    position: relative;
}

.tile_hs727--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2) contrast(0.9);
    transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

.reviewer-avatar {
    width: 48px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFF;
}

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

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

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


/*! About / Content Layout */

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

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

.alt-row--flip {
    direction: rtl;
}

.alt-row--flip > * {
    direction: ltr;
}

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

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

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

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

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

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

.segment_sD0sB--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.35;
}

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

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

.segment_sD0sB--cta .btn_fbdvS {
    position: relative;
    background: rgb(255, 255, 255);
    color: var(--clr-primary);
}

.segment_sD0sB--cta .btn_fbdvS:hover {
    background: var(--clr-dark);
    color: #fff;
}


/* 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(--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(--clr-accent);
    text-transform: uppercase;
    font-size: 0.813rem;
    letter-spacing: 0.5px;
}

.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-in-out;
}

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

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

.payment-method img {
    height: 32px;
    width: auto;
}

.time-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--clr-primary-alpha);
    border-radius: var(--r-full);
    font-size: 13px;
    color: var(--clr-accent);
}


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

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

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

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

.segment_sD0sB--seo-text {
    background: var(--clr-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(--clr-accent);
}

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

/* FAQ */

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

.faq-item {
    border: 1px solid 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: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.063rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    transition: color 0.3s ease-in-out;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--clr-primary);
    transition: transform 0.3s ease-in-out;
}

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

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-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(--clr-muted);
    line-height: 1.8;
}



.info-table {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--r-lg);
    overflow: hidden;
}

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

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

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--clr-accent);
    background: rgb(255 255 255 / 2%);
}

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

/* -- FOOTER -- */

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

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

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

.footer_rotWi-col p {
    color: var(--clr-muted);
    line-height: 180%;
}

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

.footer_rotWi-nav a {
    color: var(--clr-muted);
}

.footer_rotWi-nav a:hover {
    color: var(--clr-accent);
}

.badge-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-strip img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.badge-strip img:hover {
    filter: saturate(1) brightness(1);
    opacity: 1;
}

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

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

.responsible-text {
    font-size: 14px;
    color: var(--clr-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-in-out;
}

.safe-play a:hover {
    transform: translate(0, -3px);
}

.safe-play img {
    height: 40px;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
}

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

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

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

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


/*! Hamburger & Mobile */

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

.burger span {
    width: 26px;
    height: 3px;
    background: var(--clr-accent);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

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

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

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

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


@media (max-width: 1020px) {
    .showcase_RC6tx .wrapper_7T9gN {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .alt-row { grid-template-columns: 1fr; }
    .alt-row--flip { direction: ltr; }

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

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

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


/*! Responsive - Mobile */

@media (max-width: 47.9375em) {
    .header_ghlr1 {
        padding: 0px;
    }

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--typo-heading);
        font-size: 1.063rem;
        font-weight: 700;
        color: var(--clr-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(to bottom right, var(--clr-primary), var(--clr-secondary));
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.8px;
        border-radius: var(--r-md);
        box-shadow: 0 4px 15px var(--clr-primary-alpha);
    }

    .header_ghlr1-actions {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .navigation_9Fa7s.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 481px) {
    .wrapper_7T9gN { padding: 0 16px; }
    .segment_sD0sB { padding: 60px 0; }
    .showcase_RC6tx-ctas { flex-direction: column; }
    .showcase_RC6tx-ctas .btn_fbdvS { width: 100%; }

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