/*
 * Theme: Ocean Blue & Cyan
 * Typography: Elegant Serif
 */

@import 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap';

:root {
    /* Colors */
    --c-dark: #0a1929;
    --c-primary: #0ea5e9;
    --c-light: #f0f9ff;
    --c-secondary: #06b6d4;
    --c-darker: #050d15;
    --c-muted: #7dd3fc;
    --c-text: #e0f2fe;
    --c-secondary-alpha: #06b6d440;
    --c-primary-alpha: #0ea5e940;
    --c-accent: #22d3ee;

    /* Typography */
    --font-family-heading: 'Playfair Display', sans-serif;
    --font-family-body: 'Source Sans Pro', sans-serif;

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

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

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


/* -- BASE -- */

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



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

.skip-link: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 do-slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-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(--font-family-heading);
    font-weight: 600;
    line-height: 120%;
}

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

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


/* ==================== CONTAINER ==================== */

.content-wrap_VB3Fw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



/* HEADER */

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

.site-header_mWBP4.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: 0;
    box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.site-header_mWBP4 .content-wrap_VB3Fw {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-links_1o7MT {
    display: flex;
    gap: 32px;
}

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

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

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


/*! Buttons */

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

.button_mXNLc--primary {
    background: linear-gradient(to bottom right, var(--c-primary) 0%, var(--c-secondary) 100%);
    border: none;
    color: #ffffff;
}

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

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

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

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

.button_mXNLc--small {
    padding: 8px 20px;
    font-size: 0.875rem;
}


/*! Hero */

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

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

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

.intro_CgOU4-content {
}

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

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

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

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

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

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

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

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

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

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




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

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

.segment_6zLqk-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--c-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* -- CARDS -- */

.item_puTen {
    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(--rad-lg);
    padding: var(--sp-element);
    transition: all 0.25s ease-out;
}

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

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

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

.item_puTen-icon {
    font-size: 56px;
    margin-bottom: 1.25rem;
}

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

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

.listing_gNUDx--games {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-gap);
}

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

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

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

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

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

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

.item_puTen-name {
    font-weight: 600;
    color: rgb(255, 255, 255);
}

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

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

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

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

.item_puTen--provider span {
    position: absolute;
    bottom: 0px;
    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, rgb(0 0 0 / 60%));
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

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

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

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

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

.reviewer-avatar {
    width: 48px;
    height: 52px;
    border-radius: 40%;
    background: linear-gradient(to bottom right, var(--c-primary), var(--c-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: white;
}

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

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

.item_puTen--review p {
    color: var(--c-muted);
    font-style: italic;
    line-height: 170%;
}


/* ABOUT / CONTENT LAYOUT */

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

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

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

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

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

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

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

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


/*! CTA Blocks */

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

.segment_6zLqk--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.35;
}

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

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

.segment_6zLqk--cta .button_mXNLc {
    position: relative;
    background: #ffffff;
    color: var(--c-primary);
}

.segment_6zLqk--cta .button_mXNLc:hover {
    background: var(--c-dark);
    color: #FFF;
}



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

.payments-table tbody tr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 5%);
    transition: background 0.25s ease-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-block: 4px;
    padding-inline: 12px;
    background: var(--c-primary-alpha);
    border-radius: var(--rad-full);
    font-size: 0.813rem;
    color: var(--c-accent);
}



/* SEO TEXT */

.content-block {
    margin-top: 3rem;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    border: rgba(255,255,255,0.05) solid 1px;
}

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

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

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

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

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

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

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

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



/*! FAQ */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-radius: var(--rad-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: 17px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: color 0.25s ease-out;
}

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

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

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

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

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

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



/* -- INFO TABLE -- */

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

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

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--c-accent);
    background: rgba(255, 255, 255, 0.02);
}

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




.end-section_36TXP {
    background: var(--c-darker);
    padding: 80px 0px 0;
    border: solid 1px 0 0 0 rgb(255 255 255 / 5%);
}

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

.end-section_36TXP-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--c-accent);
}

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

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

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

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

.cert-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 50px;
    filter: grayscale(80%) brightness(1.5);
    transition: all 0.25s ease-out;
}

.cert-logos 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: rgb(255 255 255 / 5%);
}

.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: 24px;
    flex-wrap: wrap;
}

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

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

.responsible-logos img {
    height: 40px;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.25s ease-out;
}

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

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

.end-section_36TXP-bottom p {
    font-size: 14px;
    color: var(--c-muted);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-disclaimer {
    max-width: 750px;
    margin-top: 12px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    opacity: 0.5;
    line-height: 1.6;
}



.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: 30px;
    height: 3px;
    background: var(--c-accent);
    transition: all 0.25s ease-out;
    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: 64rem) {
    .intro_CgOU4 .content-wrap_VB3Fw {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

    .cert-logos { justify-content: center; }
}


/* Responsive - Mobile */

@media (max-width: 47.9375rem) {
    .site-header_mWBP4 {
        padding: 0;
    }

    .site-header_mWBP4 .content-wrap_VB3Fw {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 0.75rem;
    }

    .logo {
        display: none;
    }

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

    .site-header_mWBP4-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .nav-links_1o7MT.active {
        right: 0;
    }

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

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

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

@media (max-width: 29.9375rem) {
    .content-wrap_VB3Fw { padding: 0 16px; }
    .segment_6zLqk { padding: 60px 0px; }
    .intro_CgOU4-ctas { flex-direction: column; }
    .intro_CgOU4-ctas .button_mXNLc { width: 100%; }

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