/*
 * Theme: Arctic Blue
 * Typography: Tech Future
 */

@import "https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@400;500;600&display=swap";

:root {
    /* Colors */
    --c-primary-alpha: #3b82f640;
    --c-accent: #93c5fd;
    --c-light: #eff6ff;
    --c-muted: #93c5fd;
    --c-secondary-alpha: #60a5fa40;
    --c-secondary: #60a5fa;
    --c-primary: #3b82f6;
    --c-dark: #0c1929;
    --c-darker: #060d14;
    --c-text: #dbeafe;

    /* Typography */
    --ff-heading: 'Rajdhani', sans-serif;
    --ff-body: 'Exo 2', sans-serif;

    /* Spacing */
    --section-padding: 50px;
    --element-spacing: 20px;
    --gap: 20px;

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

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

/* BASE */

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

.bypass-block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--c-primary);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-md);
    z-index: 10000;
    transition: top 0.25s ease-in;
}

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

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

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

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


html {
    scroll-behavior: smooth;
}

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

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

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

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


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

/* -- HEADER -- */

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

.masthead_2O6KD.scrolled {
    background: rgb(0 0 0 / 90%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.masthead_2O6KD .box_5fpA3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead_2O6KD .logo {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav_C2MJC a {
    font-weight: 500;
    color: var(--c-text);
    opacity: 0.8;
    transition: all 0.25s ease-in;
}

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

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

/* BUTTONS */

.action_ydVSr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--ff-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--rounded-md);
    cursor: pointer;
    transition: all 0.25s ease-in;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.action_ydVSr--primary {
    background: var(--c-primary);
    border: none;
    color: rgb(255,255,255);
}

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

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

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

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

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

/* HERO */

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

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

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

.splash_mRPen-content {
}

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

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

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

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

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

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

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

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

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

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

/* SECTIONS */

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

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

.section_6AbgW-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--c-muted);
    margin-bottom: 3rem;
    max-width: 680px;
    margin: 0px auto;
}

/*
 * Cards
 */

.card_IuNzy {
    background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: var(--rounded-lg);
    padding: var(--element-spacing);
    transition: all 0.25s ease-in;
}

.card_IuNzy:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--elevated-shadow);
    border-color: var(--c-primary);
}

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

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

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

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

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

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

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

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

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

.card_IuNzy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 0.25s ease-in;
}

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

.card_IuNzy-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_IuNzy-name {
    font-weight: 600;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section_6AbgW--cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
}

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

.section_6AbgW--cta .action_ydVSr {
    position: relative;
    background: white;
    color: var(--c-primary);
}

.section_6AbgW--cta .action_ydVSr:hover {
    background: var(--c-dark);
    color: white;
}

/* 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(--rounded-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(--c-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.25s ease-in;
}

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

.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(--c-primary-alpha);
    border-radius: var(--rounded-full);
    font-size: 13px;
    color: var(--c-accent);
}

/*
 * SEO Text
 */

.content-block {
    margin-top: 48px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rounded-lg);
    border: 1px solid rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

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

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


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

.faq-item {
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: var(--rounded-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: #FFF;
    text-align: left;
    transition: color 0.25s ease-in;
}

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

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

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

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

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

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


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

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

.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(--c-accent);
    background: rgba(255,255,255,0.02);
}

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

/* --- Footer --- */

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

.footer_2eCTz-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.75rem;
    margin-bottom: 3.75rem;
}

.footer_2eCTz-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--c-accent);
}

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

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

.footer_2eCTz-nav a {
    color: var(--c-muted);
}

.footer_2eCTz-nav a:hover {
    color: var(--c-accent);
}

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

.trust-badges img {
    height: 50px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.25s ease-in;
}

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

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

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

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

.responsible-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-logos a {
    display: block;
    transition: all 0.25s ease-in;
}

.responsible-logos a:hover {
    transform: translateY(-3px);
}

.responsible-logos img {
    height: 40px;
    opacity: 0.4;
    transition: all 0.25s ease-in;
}

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

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

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

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

.footer-update {
    margin-top: 16px;
    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 ===== */

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

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--c-accent);
    transition: all 0.25s ease-in;
    border-radius: 2px;
}

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

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

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

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

/** Responsive - Tablet **/

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

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

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

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

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

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

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

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


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

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--ff-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--c-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(120deg, var(--c-primary), var(--c-secondary));
        color: #fff;
        font-size: 0.813rem;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.5px;
        border-radius: var(--rounded-md);
        box-shadow: 0 4px 15px var(--c-primary-alpha);
    }

    .masthead_2O6KD-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .nav_C2MJC.active {
        right: 0px;
    }

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

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

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

    .payments-table th:nth-child(2),
    .payments-table th:nth-child(3),
    .payments-table td:nth-child(2),
    .payments-table td:nth-child(3) {
        display: none;
    }

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

@media (max-width: 479px) {
    .box_5fpA3 { padding: 0 16px; }
    .section_6AbgW { padding: 60px 0; }
    .splash_mRPen-ctas { flex-direction: column; }
    .splash_mRPen-ctas .action_ydVSr { width: 100%; }

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