@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
html {
    scroll-behavior: smooth;
}
/**/

:root {
    --xv-dark: #016b61;
    --xv-primary: #70b2b9;
    --xv-light: #9ecfd4;
    --xv-accent: #e5e9c5;

    --xv-white: #ffffff;
    --xv-gray: #6b7280;
    --xv-text: #1f2937;

    --xv-dark-hover: rgba(1, 107, 97, 0.85);
    --xv-primary-hover: rgba(112, 178, 185, 0.85);

    --xv-font-heading: 'Bricolage Grotesque', sans-serif;
    --xv-font-body: 'Inter', sans-serif;

    --xv-space-sm: 1rem;
    --xv-space-md: 2rem;
    --xv-space-lg: 3rem;

    --xv-container: 1200px;

    --xv-radius: 12px;
    --xv-shadow: 0 4px 12px rgba(1, 107, 97, 0.1);
    --xv-transition: 250ms ease;
}

body {
    font-family: var(--xv-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--xv-text);
    background-color: var(--xv-white);
}

.xv-container {
    max-width: var(--xv-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.xv-heading {
    font-family: var(--xv-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--xv-dark);
    margin-bottom: var(--xv-space-sm);
}

.xv-heading--xl {
    font-size: 3rem;
}

.xv-heading--lg {
    font-size: 2.5rem;
}

.xv-heading--md {
    font-size: 2rem;
}

.xv-heading--sm {
    font-size: 1.5rem;
    font-weight: 600;
}

.xv-text {
    line-height: 1.7;
}

.xv-text--muted {
    color: var(--xv-gray);
}

.xv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    font-family: var(--xv-font-body);
    font-weight: 500;
    text-decoration: none;

    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--xv-radius);
    cursor: pointer;
    transition: all var(--xv-transition);
}

.xv-btn--primary {
    background-color: var(--xv-dark);
    color: var(--xv-white);
    box-shadow: var(--xv-shadow);
}

.xv-btn--primary:hover {
    background-color: var(--xv-dark-hover);
    transform: translateY(-2px);
}

.xv-btn--secondary {
    background-color: var(--xv-primary);
    color: var(--xv-white);
}

.xv-btn--secondary:hover {
    background-color: var(--xv-primary-hover);
    transform: translateY(-2px);
}

.xv-btn--outline {
    background-color: transparent;
    color: var(--xv-dark);
    border: 2px solid var(--xv-dark);
}

.xv-btn--outline:hover {
    background-color: var(--xv-dark);
    color: var(--xv-white);
}

.xv-card {
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    box-shadow: var(--xv-shadow);
    padding: var(--xv-space-md);
    transition: all var(--xv-transition);
}

.xv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 107, 97, 0.15);
}

.xv-section-header {
    text-align: center;
    margin-bottom: var(--xv-space-lg);
}

.xv-section-header__subtitle {
    color: var(--xv-gray);
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto;
}

.xv-badge {
    display: inline-flex;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    background-color: rgba(1, 107, 97, 0.1);
    color: var(--xv-dark);
}

.xv-link {
    color: var(--xv-dark);
    text-decoration: none;
    transition: color var(--xv-transition);
}

.xv-link:hover {
    color: var(--xv-primary);
}
/**/
.xv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--xv-white);
    transition: all var(--xv-transition);
}

.xv-header.xv-header--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(1, 107, 97, 0.08);
}

.xv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.xv-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-dark);
    transition: opacity var(--xv-transition);
}

.xv-header__logo:hover {
    opacity: 0.8;
}

.xv-header__logo-img {
    height: 50px;
    margin-right: 7px;
    width: auto;
}

.xv-header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.xv-header__link {
    font-weight: 500;
    color: var(--xv-text);
    text-decoration: none;
    position: relative;
    transition: color var(--xv-transition);
}

.xv-header__link-text {
    position: relative;
    display: inline-block;
}

.xv-header__link-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: var(--xv-dark);
    transition: width 0.3s ease;
    white-space: nowrap;
}

.xv-header__link:hover .xv-header__link-text::before {
    width: 100%;
}

.xv-header__link:hover {
    color: var(--xv-gray);
}

.xv-header__cta {
    margin-left: 1rem;
}

.xv-header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

.xv-header__burger-box {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.xv-header__burger-inner,
.xv-header__burger-inner::before,
.xv-header__burger-inner::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--xv-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.xv-header__burger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.xv-header__burger-inner::before,
.xv-header__burger-inner::after {
    content: '';
    display: block;
}

.xv-header__burger-inner::before {
    top: -8px;
}

.xv-header__burger-inner::after {
    bottom: -8px;
}

.xv-header__burger--active .xv-header__burger-inner {
    background-color: transparent;
}

.xv-header__burger--active .xv-header__burger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.xv-header__burger--active .xv-header__burger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}
/**/
.xv-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.xv-age-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.xv-age-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 107, 97, 0.95) 0%, rgba(1, 77, 69, 0.98) 100%);
    backdrop-filter: blur(8px);
}

.xv-age-modal__container {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.xv-age-modal[aria-hidden="false"] .xv-age-modal__container {
    transform: scale(1);
}

.xv-age-modal__content {
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.xv-age-modal__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(112, 178, 185, 0.15) 0%, rgba(158, 207, 212, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.xv-age-modal__icon-img {
    width: 40px;
    height: 40px;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-age-modal__badge {
    position: absolute;
    top: -20px;
    right: 2rem;
    width: 70px;
    height: 70px;
    background-color: var(--xv-dark);
    border: 4px solid var(--xv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(1, 107, 97, 0.3);
}

.xv-age-modal__badge-text {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-white);
}

.xv-age-modal__title {
    font-family: var(--xv-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.xv-age-modal__description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--xv-text);
    margin: 0 0 1.5rem 0;
}

.xv-age-modal__warning {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(229, 233, 197, 0.3);
    border-left: 4px solid var(--xv-primary);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.xv-age-modal__warning-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
}

.xv-age-modal__warning-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--xv-text);
    margin: 0;
    text-align: left;
    font-weight: 500;
}

.xv-age-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.xv-age-modal__btn {
    width: 100%;
    justify-content: center;
}

.xv-age-modal__btn-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.xv-age-modal__btn-icon--dark {
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-btn--outline:hover .xv-age-modal__btn-icon--dark {
    filter: brightness(0) invert(1);
}

.xv-age-modal__note {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--xv-gray);
    margin: 0;
}

.xv-age-modal__link {
    color: var(--xv-dark);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--xv-transition);
}

.xv-age-modal__link:hover {
    color: var(--xv-primary);
}

body.xv-age-modal-open {
    overflow: hidden;
}
/**/
.xv-hero {
    padding: 8rem 0 4rem;
    background-color: #fafcfc;
    position: relative;
    overflow: hidden;
}

.xv-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image:
            repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(112, 178, 185, 0.03) 20px,
                    rgba(112, 178, 185, 0.03) 40px
            ),
            repeating-linear-gradient(
                    -45deg,
                    transparent,
                    transparent 20px,
                    rgba(1, 107, 97, 0.02) 20px,
                    rgba(1, 107, 97, 0.02) 40px
            );
}

.xv-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.xv-hero__content {
    position: relative;
}

.xv-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--xv-white);
    border: 1px solid rgba(112, 178, 185, 0.3);
    border-radius: 50px;
    color: var(--xv-dark);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.xv-hero__badge-icon {
    width: 16px;
    height: 16px;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-hero__title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.xv-hero__description {
    font-size: 1.125rem;
    color: var(--xv-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.xv-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.xv-hero__btn-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform var(--xv-transition);
}

.xv-hero__btn:hover .xv-hero__btn-icon {
    transform: translateX(4px);
}

.xv-hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    border: 1px solid rgba(1, 107, 97, 0.08);
}

.xv-hero__stat {
    flex: 1;
}

.xv-hero__stat-number {
    font-family: var(--xv-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--xv-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.xv-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--xv-gray);
    line-height: 1.3;
}

.xv-hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(1, 107, 97, 0.1);
}

.xv-hero__visual {
    position: relative;
    height: 500px;
}

.xv-hero__illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.xv-hero__illustration-img {
    width: 100%;
    height: auto;
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(1, 107, 97, 0.15));
    animation: xvFloatSlow 6s ease-in-out infinite;
}

.xv-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--xv-white);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(1, 107, 97, 0.12);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--xv-dark);
    z-index: 3;
}

.xv-hero__float--1 {
    top: 10%;
    right: 10%;
    animation: xvFloat 4s ease-in-out infinite;
}

.xv-hero__float--2 {
    top: 50%;
    left: -5%;
    animation: xvFloat 5s ease-in-out 1s infinite;
}

.xv-hero__float--3 {
    bottom: 15%;
    right: 5%;
    animation: xvFloat 4.5s ease-in-out 0.5s infinite;
}

.xv-hero__float-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(112, 178, 185, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xv-hero__float-icon img {
    width: 25px;
    height: 25px;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-hero__circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.xv-hero__circle--1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(112, 178, 185, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: xvPulse 5s ease-in-out infinite;
}

.xv-hero__circle--2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(158, 207, 212, 0.2) 0%, transparent 70%);
    top: 15%;
    right: 5%;
    animation: xvPulse 6s ease-in-out 1s infinite;
}

.xv-hero__circle--3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(229, 233, 197, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation: xvPulse 7s ease-in-out 2s infinite;
}

@keyframes xvFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes xvFloatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes xvPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}
/**/
/* ============================================ */
/* LICENSE MEANING SECTION - COMPACT */
/* ============================================ */

.xv-license-meaning {
    padding: 5rem 0;
    background: linear-gradient(180deg,
    rgba(229, 233, 197, 0.12) 0%,
    rgba(255, 255, 255, 1) 100%
    );
}

/* License Grid */
.xv-license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: var(--xv-space-lg);
    margin-bottom: var(--xv-space-lg);
}

/* License Card */
.xv-license-card {
    background: var(--xv-white);
    border-radius: var(--xv-radius);
    box-shadow: var(--xv-shadow);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all var(--xv-transition);
    border-left: 4px solid var(--xv-dark);
}

.xv-license-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 107, 97, 0.15);
}

.xv-license-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--xv-dark) 0%, var(--xv-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(1, 107, 97, 0.2);
}

.xv-license-card__icon--primary {
    background: linear-gradient(135deg, var(--xv-primary) 0%, var(--xv-light) 100%);
}

.xv-license-card__icon--light {
    background: linear-gradient(135deg, var(--xv-light) 0%, var(--xv-primary) 100%);
}

.xv-license-card__icon--accent {
    background: linear-gradient(135deg, var(--xv-accent) 0%, var(--xv-primary) 100%);
}

.xv-license-card__icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.xv-license-card__content {
    flex: 1;
}

.xv-license-card__title {
    font-family: var(--xv-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin-bottom: 0.75rem;
}

.xv-license-card__text {
    line-height: 1.6;
    color: var(--xv-text);
    font-size: 0.95rem;
}

/* Cost Info Box */
.xv-license-cost-box {
    display: flex;
    align-items: start;
    gap: 2rem;
    background: linear-gradient(135deg,
    rgba(112, 178, 185, 0.1) 0%,
    rgba(158, 207, 212, 0.1) 100%
    );
    border: 2px solid var(--xv-primary);
    border-radius: var(--xv-radius);
    padding: 2.5rem;
    box-shadow: var(--xv-shadow);
}

.xv-license-cost-box__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    filter: invert(52%) sepia(18%) saturate(891%) hue-rotate(141deg);
}

.xv-license-cost-box__content {
    flex: 1;
}

.xv-license-cost-box__title {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin-bottom: 1rem;
}

.xv-license-cost-box__text {
    line-height: 1.7;
    color: var(--xv-text);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .xv-license-meaning {
        padding: 3rem 0;
    }

    .xv-license-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .xv-license-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .xv-license-card__icon {
        width: 80px;
        height: 80px;
    }

    .xv-license-card__icon img {
        width: 40px;
        height: 40px;
    }

    .xv-license-cost-box {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .xv-license-cost-box__icon {
        width: 48px;
        height: 48px;
    }

    .xv-license-cost-box__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .xv-license-card__title {
        font-size: 1.125rem;
    }

    .xv-license-card__text {
        font-size: 0.9rem;
    }
}
/**/
.xv-casinos {
    padding: var(--xv-space-lg) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafcfc 100%);
}

.xv-section-header {
    text-align: center;
    margin-bottom: var(--xv-space-lg);
}

.xv-section-header__title {
    margin-bottom: 0.75rem;
}

.xv-section-header__subtitle {
    font-size: 1.125rem;
    color: var(--xv-gray);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

.xv-casinos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--xv-space-md);
}

.xv-casino-card {
    background-color: var(--xv-accent);
    border: 2px solid transparent;
    border-radius: var(--xv-radius);
    padding: 2rem;
    transition: all var(--xv-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.xv-casino-card:hover {
    transform: scale(1.02);
}

.xv-casino-card__header {
    margin-bottom: 1.25rem;
}

.xv-casino-card__title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.xv-casino-card__name {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin: 0;
    line-height: 1.3;
}

.xv-casino-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.xv-casino-card__stars {
    display: flex;
    gap: 0.25rem;
}

.xv-casino-card__star {
    width: 16px;
    height: 16px;
    filter: invert(71%) sepia(57%) saturate(449%) hue-rotate(141deg) brightness(94%) contrast(87%);
}

.xv-casino-card__star--empty {
    filter: invert(75%) sepia(7%) saturate(442%) hue-rotate(177deg) brightness(92%) contrast(91%);
}

.xv-casino-card__reviews {
    font-size: 0.75rem;
    color: var(--xv-gray);
    white-space: nowrap;
}

.xv-casino-card__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.xv-casino-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.xv-casino-card__badge img {
    width: 12px;
    height: 12px;
}

.xv-casino-card__badge--license {
    background-color: rgba(112, 178, 185, 0.12);
    color: var(--xv-dark);
}

.xv-casino-card__badge--license img {
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-casino-card__badge--popular {
    background-color: rgba(255, 107, 53, 0.12);
    color: #d4461f;
}

.xv-casino-card__badge--popular img {
    filter: invert(46%) sepia(71%) saturate(2636%) hue-rotate(346deg) brightness(96%) contrast(88%);
}

.xv-casino-card__badge--bonus {
    background-color: rgba(229, 233, 197, 0.5);
    color: #6b7229;
}

.xv-casino-card__badge--bonus img {
    filter: invert(45%) sepia(14%) saturate(1508%) hue-rotate(40deg) brightness(93%) contrast(90%);
}

.xv-casino-card__badge--local {
    background-color: rgba(158, 207, 212, 0.2);
    color: var(--xv-dark);
}

.xv-casino-card__badge--local img {
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
}

.xv-casino-card__badge--trusted {
    background-color: rgba(212, 175, 55, 0.15);
    color: #9d8329;
}

.xv-casino-card__badge--trusted img {
    filter: invert(60%) sepia(38%) saturate(674%) hue-rotate(15deg) brightness(90%) contrast(85%);
}

.xv-casino-card__bonus {
    background: linear-gradient(135deg, rgb(31 103 111 / 8%) 0%, rgb(117 110 75 / 8%) 100%);
    border: 1px solid rgba(112, 178, 185, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.xv-casino-card__bonus-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--xv-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.xv-casino-card__bonus-value {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.xv-casino-card__bonus-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.xv-casino-card__bonus-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--xv-text);
}

.xv-casino-card__bonus-item img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
}

.xv-casino-card__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--xv-text);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.xv-casino-card__features {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.xv-casino-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--xv-text);
    line-height: 1.5;
}

.xv-casino-card__feature img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
}

.xv-casino-card__footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(1, 107, 97, 0.08);
}

.xv-casino-card__btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.xv-casino-card__btn-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform var(--xv-transition);
}

.xv-casino-card__btn:hover .xv-casino-card__btn-icon {
    transform: translate(2px, -2px);
}

.xv-casino-card__terms {
    font-size: 0.75rem;
    color: var(--xv-gray);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.xv-casinos__disclaimer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(112, 178, 185, 0.08);
    border-left: 4px solid var(--xv-primary);
    border-radius: var(--xv-radius);
    align-items: flex-start;
}

.xv-casinos__disclaimer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
}

.xv-casinos__disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--xv-text);
    margin: 0;
}
/**/
/* ============================================
   COMO JOGAR SECTION
   ============================================ */

.xv-como-jogar {
    padding: var(--xv-space-lg) 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f8 100%);
    position: relative;
    overflow: hidden;
}

/* Steps Container */
.xv-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Step Item */
.xv-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

/* Step Number */
.xv-step__number {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.xv-step__number-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--xv-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--xv-dark);
    z-index: 2;
}

.xv-step__number-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.xv-step__number-circle-bg {
    fill: none;
    stroke: rgba(112, 178, 185, 0.2);
    stroke-width: 4;
}

.xv-step__number-circle-progress {
    fill: none;
    stroke: var(--xv-primary);
    stroke-width: 4;
    stroke-dasharray: 301.6;
    stroke-dashoffset: 301.6;
    transition: stroke-dashoffset 0.8s ease;
    stroke-linecap: round;
}

.xv-step.xv-step--active .xv-step__number-circle-progress {
    stroke-dashoffset: 0;
}

/* Step Content */
.xv-step__content {
    flex: 1;
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    padding: 1.75rem;
    border: 1px solid rgba(1, 107, 97, 0.12);
    transition: all var(--xv-transition);
}

.xv-step__content:hover {
    border-color: rgba(1, 107, 97, 0.25);
    box-shadow: 0 8px 20px rgba(1, 107, 97, 0.1);
}

.xv-step__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.xv-step__icon {
    width: 32px;
    height: 32px;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
}

.xv-step__title {
    font-family: var(--xv-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin: 0;
    line-height: 1.3;
}

.xv-step__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--xv-text);
    margin: 0 0 1.25rem 0;
}

/* Step Toggle */
.xv-step__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: rgba(112, 178, 185, 0.1);
    border: 1px solid rgba(112, 178, 185, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--xv-dark);
    cursor: pointer;
    transition: all var(--xv-transition);
}

.xv-step__toggle:hover {
    background-color: rgba(112, 178, 185, 0.2);
    border-color: rgba(112, 178, 185, 0.5);
}

.xv-step__toggle[aria-expanded="true"] {
    background-color: var(--xv-primary);
    border-color: var(--xv-primary);
    color: var(--xv-white);
}

.xv-step__toggle-icon {
    width: 14px;
    height: 14px;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
    transition: transform var(--xv-transition);
}

.xv-step__toggle[aria-expanded="true"] .xv-step__toggle-icon {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

/* Step Details */
.xv-step__details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.xv-step.xv-step--expanded .xv-step__details {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(1, 107, 97, 0.1);
}

.xv-step__details-title {
    font-family: var(--xv-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--xv-dark);
    margin: 0 0 0.75rem 0;
}

.xv-step__details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.xv-step__details-list li {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--xv-text);
    padding-left: 1.5rem;
    position: relative;
}

.xv-step__details-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--xv-primary);
    border-radius: 50%;
}

/* Progress Line */
.xv-step__line {
    width: 4px;
    height: 50px;
    background-color: rgba(112, 178, 185, 0.2);
    margin: 0 0 0 48px;
    position: relative;
    overflow: hidden;
}

.xv-step__line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--xv-primary) 0%, var(--xv-light) 100%);
    transition: height 0.6s ease;
}

.xv-step__line.xv-step__line--active .xv-step__line-progress {
    height: 100%;
}

/* CTA Bottom */
.xv-como-jogar__cta {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    border: 2px dashed rgba(112, 178, 185, 0.3);
}

.xv-como-jogar__cta-text {
    font-size: 1.125rem;
    color: var(--xv-text);
    margin: 0 0 1.25rem 0;
    font-weight: 500;
}

.xv-como-jogar__cta-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform var(--xv-transition);
}

.xv-btn:hover .xv-como-jogar__cta-icon {
    transform: translateY(3px);
}
/**/
.xv-faq {
    padding: var(--xv-space-lg) 0;
    background-color: var(--xv-white);
}

.xv-faq__list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.xv-faq__item {
    background-color: var(--xv-white);
    border: 1px solid rgba(1, 107, 97, 0.12);
    border-radius: var(--xv-radius);
    overflow: hidden;
    transition: all var(--xv-transition);
}

.xv-faq__item:hover {
    border-color: rgba(1, 107, 97, 0.25);
}

/* FAQ Question */
.xv-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--xv-transition);
}

.xv-faq__question:hover {
    background-color: rgba(112, 178, 185, 0.05);
}

.xv-faq__question[aria-expanded="true"] {
    background-color: rgba(112, 178, 185, 0.08);
}

.xv-faq__question-text {
    font-family: var(--xv-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--xv-dark);
    line-height: 1.4;
}

.xv-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
    transition: transform var(--xv-transition);
}

.xv-faq__question[aria-expanded="true"] .xv-faq__icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.xv-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.xv-faq__item.xv-faq__item--active .xv-faq__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.xv-faq__answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--xv-text);
    margin: 0;
}

/* ============================================
   INFO GRID SECTION
   ============================================ */

.xv-info-grid {
    padding: var(--xv-space-lg) 0;
    background: linear-gradient(180deg, #fafcfc 0%, #ffffff 100%);
}

.xv-info-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--xv-space-md);
}

/* Info Card */
.xv-info-card {
    background-color: var(--xv-white);
    border-radius: var(--xv-radius);
    overflow: hidden;
    transition: all var(--xv-transition);
    border: 1px solid rgba(1, 107, 97, 0.08);
}

.xv-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(1, 107, 97, 0.15);
    border-color: rgba(1, 107, 97, 0.2);
}

.xv-info-card__link {
    text-decoration: none;
    display: block;
}

/* Card Image */
.xv-info-card__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(112, 178, 185, 0.1) 0%, rgba(158, 207, 212, 0.1) 100%);
}

.xv-info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--xv-transition);
}

.xv-info-card:hover .xv-info-card__image img {
    transform: scale(1.05);
}

.xv-info-card__icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background-color: var(--xv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(1, 107, 97, 0.15);
}

.xv-info-card__icon img {
    width: 24px;
    height: 24px;
    filter: invert(28%) sepia(46%) saturate(1234%) hue-rotate(147deg) brightness(94%) contrast(98%);
    transform: none !important;
}

/* Card Content */
.xv-info-card__content {
    padding: 1.5rem;
}

.xv-info-card__title {
    font-family: var(--xv-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xv-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.xv-info-card__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--xv-text);
    margin: 0 0 1rem 0;
}

.xv-info-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--xv-primary);
    transition: gap var(--xv-transition);
}

.xv-info-card:hover .xv-info-card__cta {
    gap: 0.75rem;
}

.xv-info-card__arrow {
    width: 16px;
    height: 16px;
    filter: invert(50%) sepia(21%) saturate(848%) hue-rotate(142deg) brightness(92%) contrast(88%);
    transition: transform var(--xv-transition);
}

.xv-info-card:hover .xv-info-card__arrow {
    transform: translateX(4px);
}

/* Disclaimer */
.xv-info-grid__disclaimer {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(229, 233, 197, 0.3);
    border-left: 4px solid var(--xv-primary);
    border-radius: var(--xv-radius);
}

.xv-info-grid__disclaimer p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--xv-text);
    margin: 0;
}

.xv-info-grid__disclaimer strong {
    font-weight: 600;
    color: var(--xv-dark);
}

.xv-info-grid__disclaimer a {
    color: var(--xv-dark);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--xv-transition);
}

.xv-info-grid__disclaimer a:hover {
    color: var(--xv-primary);
}

/**/

.xv-footer {
    background-color: var(--xv-dark);
    color: var(--xv-white);
}

/* ============================================
   RESPONSIBLE GAMING BANNER
   ============================================ */

.xv-footer__banner {
    background: linear-gradient(135deg, #014d45 0%, #016b61 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xv-footer__banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.xv-footer__banner-text {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.xv-footer__banner-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    margin-top: 0.25rem;
}

.xv-footer__banner-title {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-white);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.xv-footer__banner-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.xv-footer__age-badge {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 3px solid var(--xv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xv-footer__age-number {
    font-family: var(--xv-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--xv-white);
}

/* ============================================
   MAIN FOOTER
   ============================================ */

.xv-footer__main {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xv-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.xv-footer__column {
    display: flex;
    flex-direction: column;
}

.xv-footer__brand {
    margin-bottom: 2rem;
}

.xv-footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.xv-footer__description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.xv-footer__heading {
    font-family: var(--xv-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--xv-white);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.xv-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.xv-footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--xv-transition);
    display: inline-block;
    position: relative;
}

.xv-footer__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--xv-primary);
    transition: width var(--xv-transition);
}

.xv-footer__link:hover {
    color: var(--xv-white);
    transform: translateX(4px);
}

.xv-footer__link:hover::before {
    width: 100%;
}

.xv-footer__organizations {
    padding: 2.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xv-footer__orgs-title {
    font-family: var(--xv-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--xv-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 2rem 0;
}

.xv-footer__orgs-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.xv-footer__org {
    display: block;
    transition: all var(--xv-transition);
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.6);
}

.xv-footer__org:hover {
    filter: grayscale(0%) brightness(1) invert(0) opacity(1);
    transform: translateY(-4px);
}

.xv-footer__org--static {
    filter: none;
    cursor: default;
}

.xv-footer__org--static:hover {
    transform: none;
}

.xv-footer__org-logo {
    height: 50px;
    width: auto;
}

.xv-footer__org-18 {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xv-footer__org-18 span {
    font-family: var(--xv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xv-white);
}

.xv-footer__support {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.xv-footer__support-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0.75rem 0;
}

.xv-footer__support-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.xv-footer__support-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    transition: color var(--xv-transition);
}

.xv-footer__support-link:hover {
    color: var(--xv-primary);
}

.xv-footer__support-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}
.xv-footer__bottom {
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.xv-footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-direction: column-reverse;
}

.xv-footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.xv-footer__disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: right;
}

@media (max-width: 992px) {
    .xv-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .xv-hero__visual {
        height: 400px;
    }

    .xv-hero__title {
        font-size: 2.5rem;
    }

    .xv-hero__float--2 {
        left: 5%;
    }
    .xv-casinos__grid {
        gap: 1.5rem;
    }

    .xv-casino-card {
        padding: 1.75rem;
    }

    .xv-casino-card__name {
        font-size: 1.375rem;
    }

    .xv-casino-card__bonus-value {
        font-size: 1.375rem;
    }
    .xv-info-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .xv-info-card__image {
        height: 180px;
    }
    .xv-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .xv-footer__column:first-child {
        grid-column: 1 / -1;
    }

    .xv-footer__orgs-grid {
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .xv-heading--xl {
        font-size: 2.25rem;
    }

    .xv-heading--lg {
        font-size: 1.875rem;
    }

    .xv-heading--md {
        font-size: 1.5rem;
    }
    .xv-header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--xv-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(1, 107, 97, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .xv-header__nav.xv-header__nav--active {
        transform: translateX(0);
    }

    .xv-header__link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(1, 107, 97, 0.1);
    }

    .xv-header__link-text::before {
        display: none;
    }

    .xv-header__cta {
        margin: 1rem 1.5rem 0;
        width: calc(100% - 3rem);
    }

    .xv-header__burger {
        display: block;
    }

    .xv-hero {
        padding: 6rem 0 3rem;
    }

    .xv-hero__title {
        font-size: 2rem;
    }

    .xv-hero__stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .xv-hero__stat-divider {
        display: none;
    }

    .xv-hero__visual {
        height: 350px;
    }

    .xv-hero__float {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .xv-hero__float-icon {
        width: 24px;
        height: 24px;
    }

    .xv-hero__float-icon img {
        width: 12px;
        height: 12px;
    }
    .xv-casinos {
        padding: var(--xv-space-md) 0;
    }

    .xv-casinos__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .xv-casino-card {
        padding: 1.5rem;
    }

    .xv-casino-card__title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .xv-casino-card__rating {
        align-items: flex-start;
    }

    .xv-casino-card__name {
        font-size: 1.25rem;
    }

    .xv-casino-card__bonus {
        padding: 0.875rem;
    }

    .xv-casino-card__bonus-value {
        font-size: 1.25rem;
    }

    .xv-section-header__subtitle {
        font-size: 1rem;
    }
    .xv-faq {
        padding: var(--xv-space-md) 0;
    }

    .xv-info-grid {
        padding: var(--xv-space-md) 0;
    }

    .xv-faq__list {
        gap: 0.75rem;
    }

    .xv-faq__question {
        padding: 1rem 1.25rem;
    }

    .xv-faq__question-text {
        font-size: 1rem;
    }

    .xv-faq__icon {
        width: 18px;
        height: 18px;
    }

    .xv-faq__item.xv-faq__item--active .xv-faq__answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .xv-faq__answer p {
        font-size: 0.875rem;
    }

    .xv-info-grid__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .xv-info-card__content {
        padding: 1.25rem;
    }

    .xv-info-card__title {
        font-size: 1.125rem;
    }

    .xv-info-card__image {
        height: 160px;
    }
    .xv-footer__banner {
        padding: 1.5rem 0;
    }

    .xv-footer__banner-content {
        flex-direction: column;
        text-align: center;
    }

    .xv-footer__banner-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .xv-footer__banner-icon {
        margin-top: 0;
    }

    .xv-footer__banner-title {
        font-size: 1.25rem;
    }

    .xv-footer__age-badge {
        width: 70px;
        height: 70px;
    }

    .xv-footer__age-number {
        font-size: 1.75rem;
    }

    .xv-footer__main {
        padding: 2.5rem 0;
    }

    .xv-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .xv-footer__brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .xv-footer__social {
        justify-content: center;
    }

    .xv-footer__organizations {
        padding: 2rem 0;
    }

    .xv-footer__orgs-grid {
        gap: 1.5rem;
    }

    .xv-footer__org-logo {
        height: 40px;
    }

    .xv-footer__disclaimer {
        text-align: center;
    }
    .xv-age-modal__content {
        padding: 2.5rem 2rem;
    }

    .xv-age-modal__icon {
        width: 70px;
        height: 70px;
    }

    .xv-age-modal__icon-img {
        width: 35px;
        height: 35px;
    }

    .xv-age-modal__badge {
        width: 60px;
        height: 60px;
        right: 1.5rem;
    }

    .xv-age-modal__badge-text {
        font-size: 1.25rem;
    }

    .xv-age-modal__title {
        font-size: 1.75rem;
    }

    .xv-age-modal__description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .xv-heading--xl {
        font-size: 1.875rem;
    }

    .xv-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    .xv-age-modal__content {
        padding: 2rem 1.5rem;
    }

    .xv-age-modal__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .xv-age-modal__icon-img {
        width: 30px;
        height: 30px;
    }

    .xv-age-modal__badge {
        width: 50px;
        height: 50px;
        right: 1rem;
        border-width: 3px;
    }

    .xv-age-modal__badge-text {
        font-size: 1.125rem;
    }

    .xv-age-modal__title {
        font-size: 1.5rem;
    }

    .xv-age-modal__description {
        font-size: 0.9375rem;
    }

    .xv-age-modal__warning {
        padding: 0.875rem;
    }

    .xv-age-modal__warning-icon {
        width: 20px;
        height: 20px;
    }

    .xv-age-modal__warning-text {
        font-size: 0.8125rem;
    }
    .xv-hero__title {
        font-size: 1.75rem;
    }

    .xv-hero__actions {
        flex-direction: column;
    }

    .xv-hero__btn {
        width: 100%;
    }

    .xv-hero__stats {
        flex-direction: row;
    }

    .xv-hero__stat-label {
        font-size: 0.75rem;
    }
    .xv-casino-card {
        padding: 1.25rem;
    }

    .xv-casino-card__description {
        font-size: 0.875rem;
    }

    .xv-casino-card__feature {
        font-size: 0.8125rem;
    }

    .xv-casino-card__features {
        gap: 0.5rem;
    }

    .xv-casino-card__bonus {
        padding: 0.75rem;
    }

    .xv-casino-card__bonus-value {
        font-size: 1.125rem;
    }

    .xv-casino-card__bonus-item {
        font-size: 0.75rem;
    }

    .xv-casinos__disclaimer {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .xv-casinos__disclaimer-icon {
        width: 20px;
        height: 20px;
    }

    .xv-casinos__disclaimer-text {
        font-size: 0.8125rem;
    }
    .xv-faq__question {
        padding: 0.875rem 1rem;
    }

    .xv-faq__question-text {
        font-size: 0.9375rem;
    }

    .xv-info-card__content {
        padding: 1rem;
    }

    .xv-info-card__description {
        font-size: 0.875rem;
    }

    .xv-info-card__icon {
        width: 40px;
        height: 40px;
    }

    .xv-info-card__icon img {
        width: 20px;
        height: 20px;
    }

    .xv-info-grid__disclaimer {
        padding: 1.25rem;
    }

    .xv-info-grid__disclaimer p {
        font-size: 0.8125rem;
    }
    .xv-footer__banner-title {
        font-size: 1.125rem;
    }

    .xv-footer__banner-subtitle {
        font-size: 0.875rem;
    }

    .xv-footer__age-badge {
        width: 60px;
        height: 60px;
    }

    .xv-footer__age-number {
        font-size: 1.5rem;
    }

    .xv-footer__orgs-grid {
        gap: 1rem;
    }

    .xv-footer__org-logo {
        height: 35px;
    }

    .xv-footer__org-18 {
        width: 50px;
        height: 50px;
    }

    .xv-footer__org-18 span {
        font-size: 1.25rem;
    }

    .xv-footer__support-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .xv-footer__support-divider {
        display: none;
    }
}
.mainWrapper {
  position: fixed;
  inset: 0;
  background: #f5f5f5;
  z-index: 87991;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.dataSection {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
