/*!
 * Stylesheet: Sunset Orange
 * Fonts: Rajdhani / Exo 2
 * Date: 2026-08-18T15:50:42.706Z
 */

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

:root {
    --color-primary-alpha: #ea580c40;
    --color-light: #fff7ed;
    --color-dark: #1a0f05;
    --color-secondary-alpha: #f9731640;
    --color-accent: #fdba74;
    --color-muted: #fb923c;
    --color-darker: #0d0802;
    --color-primary: #ea580c;
    --color-secondary: #f97316;
    --color-text: #fed7aa;

    --font-family-heading: 'Rajdhani', sans-serif;
    --font-family-body: 'Exo 2', sans-serif;

    --pad-section: 70px;
    --pad-element: 30px;
    --grid-gap: 25px;
    --rad-md: 20px;
    --rad-sm: 12px;
    --rad-lg: 28px;
    --rad-full: 50px;
    --shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 30px;
}

/* --- Base --- */

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

.acc-skip {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--color-primary);
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rad-md);
    z-index: 10000;
    transition: top 0.35s ease-in;
}

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

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

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

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



html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-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.35s ease-in;
}

/* ===== Container ===== */

.wrapper_Yj2Kp {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
}

/* ===== Header ===== */

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

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

.masthead_KQqdF .wrapper_Yj2Kp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-links_rhnOp {
    display: flex;
    gap: 2rem;
}

.nav-links_rhnOp a {
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.8;
    transition: all 0.35s ease-in;
}

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

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

/* -- BUTTONS -- */

.action_VdtuG {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rad-md);
    cursor: pointer;
    transition: all 0.35s ease-in;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action_VdtuG--primary {
    background: var(--color-primary);
    border: none;
    box-shadow: 0 0 20px var(--color-primary-alpha);
    color: rgb(255, 255, 255);
}

.action_VdtuG--primary:hover {
    transform: translate(0, -3px);
    box-shadow: var(--shadow-elevated);
}

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

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

.action_VdtuG--large {
    padding: 18px 40px;
    font-size: 1.063rem;
}

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

/* -- HERO -- */

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

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

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

.banner_R3d3y-content {
    order: 2;
}

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

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

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

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

.banner_R3d3y-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

/*
 * Sections
 */

.zone_b3e6C {
    padding: var(--pad-section) 0px;
}

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

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

/* ==================== CARDS ==================== */

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

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

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

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

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

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

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

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

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

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

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

.item_quL7J-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.35s ease-in;
}

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

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

.item_quL7J-name {
    font-weight: 600;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! About / Content Layout */

.two-col {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

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

.two-col-row--swap {
    direction: rtl;
}

.two-col-row--swap > * {
    direction: ltr;
}

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

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

.two-col-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.two-col-img img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
}


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

.zone_b3e6C--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.3;
}

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

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

.zone_b3e6C--cta .action_VdtuG {
    position: relative;
    background: rgb(255, 255, 255);
    color: var(--color-primary);
}

.zone_b3e6C--cta .action_VdtuG:hover {
    background: var(--color-dark);
    color: #FFF;
}

/* ==================== PAYMENTS TABLE ==================== */

.payments-table-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

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

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

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

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

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
    transition: background 0.35s ease-in;
}

.payments-table tbody tr:hover {
    background: rgb(255 255 255 / 3%);
}

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

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

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

.seo-text {
    margin-top: 48px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--rad-lg);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

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

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

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

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rad-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: 1.063rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-align: left;
    transition: color 0.35s ease-in;
}

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

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

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

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

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

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


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

.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(--color-accent);
    background: rgb(255 255 255 / 2%);
}

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

/*
 * Footer
 */

.site-footer_zc9FS {
    background: var(--color-darker);
    padding: 80px 0 0px 0px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.05);
}

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

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

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

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

.site-footer_zc9FS-nav a {
    color: var(--color-muted);
}

.site-footer_zc9FS-nav a:hover {
    color: var(--color-accent);
}

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

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

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

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

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

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

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

.safe-play img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.35s ease-in;
}

.safe-play a:hover img {
    filter: none;
    opacity: 1;
}

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

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

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

.footer-update {
    margin-top: 16px;
    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: 1.6;
}

/** Hamburger & Mobile **/

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

.toggle-btn span {
    width: 30px;
    height: 3px;
    background: var(--color-accent);
    transition: all 0.35s ease-in;
    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: 64rem) {
    .banner_R3d3y .wrapper_Yj2Kp {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .two-col-row { grid-template-columns: 1fr; }
    .two-col-row--swap { direction: ltr; }

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

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

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

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

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

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

    .logo {
        display: none;
    }

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

    .masthead_KQqdF-actions {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

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

    .nav-links_rhnOp.active {
        right: 0px;
    }

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

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

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

@media (max-width: 29.9375em) {
    .wrapper_Yj2Kp { padding: 0 16px; }
    .zone_b3e6C { padding: 60px 0; }
    .banner_R3d3y-ctas { flex-direction: column; }
    .banner_R3d3y-ctas .action_VdtuG { width: 100%; }

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