/* Casino Landing Page Styles - Arctic Blue + Classic Power */

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&family=Rubik:wght@400;500&display=swap");

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

    /* Typography */
    --body-font: 'Rubik', sans-serif;
    --heading-font: 'Teko', sans-serif;

    /* Spacing */
    --spacing-element: 30px;
    --spacing-section: 70px;
    --spacing-gap: 25px;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-full: 50px;
    --radius-md: 20px;
    --radius-lg: 28px;

    /* Shadows */
    --sh-card: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
    --sh-glow: 0 0 40px;
    --sh-elevated: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
}

/** Base **/

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

.bypass-block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--color-primary);
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bypass-block: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 fadeIn-motion {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp-fx {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



html {
    scroll-behavior: smooth;
}

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

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

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

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


.box_uzVeR {
    max-width: 1320px;
    margin: 0px auto;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
}


/* Header */

.nav-wrap_sZfzz {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 16px;
    padding-right: 0px;
    padding-bottom: 16px;
    padding-left: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrap_sZfzz.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    padding-left: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrap_sZfzz .box_uzVeR {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.main-nav_SuxN6 {
    display: flex;
    gap: 32px;
}

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

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

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

/* --- Buttons --- */

.action_Ikuv5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 12px;
    padding-inline: 28px;
    font-family: var(--body-font);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.05em;
}

.action_Ikuv5--primary {
    background: var(--color-primary);
    border: none;
    box-shadow: 0 0 20px var(--color-primary-alpha);
    color: #ffffff;
}

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

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

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

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

.action_Ikuv5--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 14px;
}


/* -- HERO -- */

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

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

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

.showcase_omDaK-content {
    order: 2;
}

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

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

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

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

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

.showcase_omDaK-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.zone_2ui2t-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

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


/** Cards **/

.tile_Ay3VN {
    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(--radius-lg);
    padding: var(--spacing-element);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

.tile_Ay3VN--game:hover img {
    transform: scale(1.08);
}

.tile_Ay3VN-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.tile_Ay3VN--provider {
    display: flex;
    place-content: center;
    place-items: center;
    padding: 0px;
    overflow: hidden;
    aspect-ratio: 2.5 / 1;
    position: relative;
}

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

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

.tile_Ay3VN--provider span {
    position: absolute;
    bottom: 0;
    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.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-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(--color-accent);
    font-size: 14px;
}

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


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

.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: 20px;
    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: 320px;
    object-fit: contain;
}


/* ===== CTA Blocks ===== */

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

.zone_2ui2t--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.25;
}

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

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

.zone_2ui2t--cta .action_Ikuv5 {
    position: relative;
    background: #ffffff;
    color: var(--color-primary);
}

.zone_2ui2t--cta .action_Ikuv5:hover {
    background: var(--color-dark);
    color: white;
}



.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(--radius-lg);
    overflow: hidden;
}

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

.payments-table thead {
    background: rgb(255 255 255 / 5%);
}

.payments-table th {
    font-weight: 600;
    color: var(--color-accent);
    text-transform: none;
    font-size: 13px;
    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 cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* SEO TEXT */

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

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

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

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

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

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

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

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

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


/* --- FAQ --- */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: rgb(255 255 255 / 2%);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: #FFF;
    text-align: left;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.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(--color-muted);
    line-height: 1.8;
}


/** Info Table **/

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

.info-table tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: 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(--color-accent);
    background: rgba(255,255,255,0.02);
}

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

/* FOOTER */

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

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

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

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

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

.bottom-bar_cdIkS-nav a {
    color: var(--color-muted);
}

.bottom-bar_cdIkS-nav a:hover {
    color: var(--color-accent);
}

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

.security-badges img {
    height: 50px;
    filter: saturate(0) brightness(1.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-badges img:hover {
    filter: brightness(1) contrast(1);
    opacity: 1;
}

.responsible-gaming {
    text-align: center;
    padding: 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: 0.75rem;
    color: var(--color-muted);
}

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

.responsible-gaming {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.responsible-gaming a {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.responsible-gaming a:hover {
    transform: scale(1.03);
}

.responsible-gaming img {
    height: 40px;
    filter: grayscale(80%) brightness(1.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.footer-update {
    margin-top: 16px;
    opacity: 0.6;
}

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

.footer-disclaimer {
    max-width: 650px;
    margin: 12px auto 0;
    opacity: 0.5;
    line-height: 1.6em;
}



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

.mobile-nav-btn span {
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

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


@media (max-width: 1023px) {
    .showcase_omDaK .box_uzVeR {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-wrap_sZfzz {
        padding: 0px;
    }

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

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--heading-font);
        font-size: 17px;
        font-weight: 700;
        color: var(--color-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(145deg, var(--color-primary), var(--color-secondary));
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.05em;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 15px var(--color-primary-alpha);
    }

    .nav-wrap_sZfzz-actions {
        display: none;
    }

    .mobile-nav-btn {
        display: flex;
    }

    .main-nav_SuxN6 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
        border-left: 2px solid var(--color-primary);
        z-index: 1001;
        gap: 0px;
    }

    .main-nav_SuxN6.active {
        right: 0px;
    }

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

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

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

@media (max-width: 29.9375em) {
    .box_uzVeR { padding: 0px 16px; }
    .zone_2ui2t { padding: 60px 0; }
    .showcase_omDaK-ctas { flex-direction: column; }
    .showcase_omDaK-ctas .action_Ikuv5 { width: 100%; }

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