/*
 * Theme: Teal Wave
 * Typography: Classic Power
 */

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

:root {
    /* Colors */
    --muted: #5eead4;
    --text: #ccfbf1;
    --darker: #021716;
    --secondary: #2dd4bf;
    --accent: #5eead4;
    --dark: #042f2e;
    --primary-alpha: #14b8a640;
    --secondary-alpha: #2dd4bf40;
    --primary: #14b8a6;
    --light: #f0fdfa;

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

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

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

    /* Shadows */
    --shadow-glow: 0 0 20px;
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.2);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
}


/* ===== Base ===== */

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



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

.jump-link:focus {
    top: 10px;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--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;
    }
}




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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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(--ff-body);
    background: var(--darker);
    color: var(--text);
    line-height: 160%;
    overflow-x: hidden;
}

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

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




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




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

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

.top-bar_Qz74g .wrapper_Vj2px {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar_Qz74g .logo {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

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

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



/* ===== Buttons ===== */

.link-btn_hdNyl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.link-btn_hdNyl--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: rgb(255,255,255);
}

.link-btn_hdNyl--primary:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

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

.link-btn_hdNyl--large {
    padding-block: 18px;
    padding-inline: 40px;
    font-size: 1.063rem;
}

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


/* --- Hero --- */

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

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

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

.hero_AieBF-content {
}

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

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

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

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

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

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

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

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

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

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


/*
 * Sections
 */

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

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

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


/* CARDS */

.tile_ly3ft {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: rgba(255,255,255,0.08) solid 1px;
    border-radius: var(--r-lg);
    padding: var(--element-space);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tile_ly3ft:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.tile_ly3ft-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.tile_ly3ft--provider span {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--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_ly3ft--provider:hover span {
    opacity: 1;
}

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

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

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

.reviewer-avatar {
    width: 52px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(160deg, var(--primary), var(--secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

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

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

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


/*
 * About / Content Layout
 */

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

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

.info-row--reverse {
    direction: rtl;
}

.info-row--reverse > * {
    direction: ltr;
}

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

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

.info-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-visual img {
    width: 100%;
    max-width: 450px;
    max-height: 320px;
    object-fit: contain;
}


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

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

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

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

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

.area_FIItW--cta .link-btn_hdNyl {
    position: relative;
    background: #FFFFFF;
    color: var(--primary);
}

.area_FIItW--cta .link-btn_hdNyl:hover {
    background: var(--dark);
    color: rgb(255, 255, 255);
}



/** Payments Table **/

.payments-table-wrap {
    overflow-x: auto;
    margin-bottom: 40px;
}

.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--r-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(--accent);
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0.3px;
}

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

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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


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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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



/** Info Table **/

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

.info-table tr {
    border: solid 0 0 1px 0 rgba(255,255,255,0.05);
}

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

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



/* -- FOOTER -- */

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

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

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

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

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

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

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

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

.trust-seals img {
    height: 50px;
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-seals img:hover {
    filter: saturate(1) brightness(1);
    opacity: 1;
}

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

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

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

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

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

.resp-logos a:hover {
    transform: translateY(-5px);
}

.resp-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.end-section_18wHS-bottom {
    padding: 24px 0;
    text-align: center;
}

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

.end-section_18wHS-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-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: 24px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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) {
    .hero_AieBF .wrapper_Vj2px {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .info-row { grid-template-columns: 1fr; }
    .info-row--reverse { direction: ltr; }

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

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

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


/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 48rem) {
    .top-bar_Qz74g {
        padding: 0px;
    }

    .top-bar_Qz74g .wrapper_Vj2px {
        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(--accent);
        text-transform: none;
        text-decoration: none;
        white-space: nowrap;
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 180px;
        padding: 10px 16px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        color: white;
        font-size: 0.813rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.8px;
        border-radius: var(--r-md);
        box-shadow: 0 4px 15px var(--primary-alpha);
    }

    .top-bar_Qz74g-actions {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .menu_7FMUB {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: var(--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(--primary);
        z-index: 1001;
        gap: 0px;
    }

    .menu_7FMUB.active {
        right: 0px;
    }

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

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

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

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

@media (max-width: 30em) {
    .wrapper_Vj2px { padding: 0px 16px; }
    .area_FIItW { padding: 60px 0; }
    .hero_AieBF-ctas { flex-direction: column; }
    .hero_AieBF-ctas .link-btn_hdNyl { width: 100%; }

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