@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_24pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_24pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_24pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_24pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --background: var(--Colors-background-primary, #1E1822);
    --text: #E7CDB7;
    --hoverText: #FFAA06;
    --heading: #E7CDB7;
    --heroTitle: #DEE2F4;
    --heroBadge: #F4DAC0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--background);
    color: var(--text);
}

/* Text transform utilities */
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Rich content default spacing and elements */
.content { max-width: 900px; margin: 24px auto; padding: 0 16px; color: var(--text); }
.content h2, .content h3 { color: var(--heading); margin: 24px 0 12px; }
.content p { margin: 12px 0; }
.content a { color: var(--hoverText);text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content ul, .content ol { margin: 12px 0 16px 24px; padding: 0; }
.content li { margin: 6px 0; }
.content img { max-width: 100%; border-radius: 8px; display: block; }
.content figure { margin: 16px 0; }
.content figcaption { font-size: 12px; color: #bbaebd; text-align: center; margin-top: 6px; }

/* Table styles */
.content { overflow-x: auto; }
.content table { width: 100%; min-width: 600px; border-collapse: collapse; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.content thead th { background: rgba(255,255,255,0.06); color: var(--heading); font-weight: 700; text-align: left; }
.content th, .content td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap; }
.content tbody tr:hover { background: rgba(255,255,255,0.04); }
.content tbody tr:last-child td { border-bottom: 0; }

.table-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrapper table { width: 100%; border-collapse: collapse; min-width: 600px; }

img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }

.header {position: fixed;top: 0;left: 0;right: 0;z-index: 10;background: linear-gradient(0deg, #35272E, #35272E), linear-gradient(180deg, rgba(147, 167, 196, 0.2) 0%, rgba(0, 0, 0, 0) 67.5%, rgba(53, 39, 46, 0.16) 100%), radial-gradient(72.33% 100% at 50% 100%, rgba(70, 26, 22, 0.2) 0%, rgba(125, 59, 53, 0) 60%); }
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 12px 0; gap: 16px; }
.header__left { display: flex; align-items: center; gap: 12px; }
.header__burger { background: none; border: 0; padding: 0; display: inline-grid; place-items: center; }
.header__brand img { height: 42px; width: auto; display: block; }
.nav { display: flex; gap: 20px; justify-content: center; }
.nav__link { color:#E7CDB7; text-decoration: none; font-family: 'Passion One', system-ui; font-weight: 400; font-size: 16px; line-height: 20px; letter-spacing: 1px; text-transform: uppercase; text-align: center; display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; text-shadow: 0 2px 0 rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.5); transition: transform .2s ease, color .2s ease, filter .2s ease; }
.nav__close { display: none; }
.nav__link:hover { color: #ffffff; transform: translateY(-1px); filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.header.header--scrolled { background: #1E1822; box-shadow: 0 2px 8px rgba(0,0,0,.4); }

@media (min-width: 992px) {
    .header { padding: 0 16px; }
    .header__burger { display: none; }
}

.header__actions { display: flex; gap: 12px; align-items: center; }
.btn--secondary { position: relative; display: inline-grid; place-items: center;font-size: 14px; min-width: 80px; padding: 10px 20px; color: #F4DAC0; font-weight: 900; text-decoration: none; letter-spacing: .04em; box-shadow: 0 8px 18px rgba(0,0,0,.35); text-shadow: 0 2px 0 rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.5); }
.btn--secondary { border-style: solid; border-width: 5px; border-image-source: url('/assets/img/button-bg.png'); border-image-slice: 24 fill; border-image-width: 18; border-image-repeat: stretch; background: none; }
.btn--secondary:hover { filter: brightness(1.08) drop-shadow(0 6px 16px rgba(0,0,0,.45)); }
.btn--secondary:active { filter: brightness(0.98); }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, opacity .2s ease; }
.btn:focus-visible { outline: 2px solid #F4DAC0; outline-offset: 2px; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

/* Mobile nav */
@media (max-width: 991.98px) {
    .header__inner { padding: 8px; gap:0; }
    .header__brand img { height: 36px; }
    .header__burger img { width: 48px; height: 40px; }
    .nav { position: fixed; top: 0; left: 0; height: 100vh; width: 100%; background: #1E1822; padding: 80px 24px 24px; flex-direction: column; gap: 16px; justify-content: flex-start; align-items: stretch; transform: translateX(-100%); transition: transform .25s ease; z-index: 20; }
    .nav.is-open { transform: translateX(0); }
    .nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.5); z-index: 15; }
    .nav-overlay__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; color: #E7CDB7; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.06); display: grid; place-items: center; }
    .nav__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; color: #E7CDB7; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.06); }
    .header__actions { display: flex; gap: 0px;justify-content: flex-end; }
    .btn--secondary { min-width: 65px; height: 44px; font-size: 12px; padding: 0px 5px;}
    .hero{ padding: 185px 0 24px!important;}
}

/* Submenu bar */
.submenu { position: sticky; top: 40px; z-index: 9; background: url('/assets/img/submenu.webp') center/contain no-repeat; }
.submenu__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 10px 0; }
.submenu__item { display: grid; place-items: center; height: 56px; color: #F4E8DC; text-decoration: none; font-weight: 900; letter-spacing: .04em; transition: color .2s ease, filter .2s ease, transform .2s ease; }
.submenu__item:hover { color: #ffffff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); transform: translateY(-1px); }
@media (max-width: 767.98px) { .submenu { display: block; } }
@media (min-width: 768px) {  .submenu { display: none; } }

.hero { position: relative; padding: 104px 0 0px; }
.hero__bg { position: absolute; inset: 0; background: none top center/cover no-repeat; opacity: 1; z-index: 0; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 220px; pointer-events: none; z-index: 1; background: linear-gradient(to bottom, rgba(30,24,34,0) 0%, rgba(30,24,34,.6) 60%, #1E1822 100%); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-top: 24px; }
.hero__logo { display: none; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #23120E;
    color: #FFAA06;
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid #D4810080; }
.hero__title { margin: 0; font-weight: 900; line-height: 1.05; color:#F4DAC0; font-size: clamp(32px, 6vw, 64px); text-shadow: 0 3px 0 rgba(54,28,21,.9), 0 0 6px rgba(0,0,0,.35); padding: 8px 16px; }

.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.btn--cta { width: 220px; height: 64px; text-decoration: none; }
.btn__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.btn__label { position: relative; font-weight: 900; color: #3b2500; letter-spacing: .04em; }

.section-title { color: var(--heading); font-weight: 800; margin: 24px 0; text-align: center; }

.steps { padding: 12px 0 8px; }
.steps__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.step { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 18px; background: rgba(255,255,255,0.04); border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.step:hover { background: rgba(255,255,255,0.07); box-shadow: 0 8px 24px rgba(0,0,0,.25); transform: translateY(-2px); }
.step--highlight { outline: 2px solid #F4DAC0; }
.step__num { font-weight: 900; font-size: 32px; color: #F4DAC0; }
.step__title { margin: 0; color: var(--heading); font-size: 18px; }

.terms { padding: 16px 0 32px; }
.terms .container { max-width: 900px; }
.terms__list { margin: 0; padding: 16px 20px 8px; background: rgba(255,255,255,0.06); border-radius: 14px; list-style: decimal inside; }
.terms__list li { padding: 8px 0; }
.terms__list[data-collapsed="true"] li:nth-child(n+4) { display: none; }
.terms__toggle { display: block; margin: 12px auto 0; color: var(--heading); padding: 8px 12px; border-radius: 10px; background: rgba(255,255,255,0.06); }

.footer { padding: 40px 0 56px; background: radial-gradient(120% 100% at 50% 0, rgba(255,255,255,0.04) 0, rgba(0,0,0,0) 60%) no-repeat; }
.footer__inner { display: grid; gap: 20px; justify-items: center; text-align: center; }
.footer__payments { display: flex; gap: 16px; align-items: center; }
.paycard { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 14px 22px; max-width: 90px; display: grid; place-items: center; color: #cfc6cf; text-transform: capitalize; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; box-sizing: content-box }
.paycard:hover { filter: brightness(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.35); transform: translateY(-2px); }
.footer__more { margin-left: 8px; background: none; border: 0; color: #E7CDB7; display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease, transform .2s ease; text-decoration: none; }
.footer__more:hover { color: #ffffff; transform: translateX(2px); }
.footer__badges { display: flex; gap: 24px; align-items: center; }
.footer .age { width: 44px; height: 44px; border: 4px solid #E7CDB7; border-radius: 50%; display: grid; place-items: center; color: #E7CDB7; font-weight: 400; font-size: 17px; }
.seal { width: 72px; height: 48px; background: radial-gradient(circle at 30% 50%, #ff4d4d, #3a0a0a); border-radius: 8px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.15); }
.footer__license { margin-top: 4px; }
.license__btn { background: none; border: 0; color: #E7CDB7; font-weight: 400; display: inline-flex; align-items: center; gap: 6px; }
.footer__disclaimer { max-width: 760px; margin: 8px auto 0; color: #E7CDB7; font-size: 14px; line-height: 28px; }
.copyright { margin: 0; font-size: 16px; color: #E7CDB7; }

@media (min-width: 768px) {
    .hero { padding-top: 92px; }
    .steps__grid { grid-template-columns: repeat(3, 1fr); }
    .step { align-items: center; }
    .hero__bg { background-image: url('/assets/img/offer-image-min.webp'); }
}

@media (min-width: 1200px) {
    .container { max-width: 1200px; }
}

@media (min-width: 1200px) {
    .hero__bg {
        background-image: linear-gradient(0deg, #1E1822 0%, rgba(30,24,34,0) 100%), url('/assets/img/Rectangle-min1.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    h1 { font-size: 55px; }
}

/* 1280â€“1919: desktop tuning for hero */
@media (min-width: 1280px) and (max-width: 1919.98px) {
    .container { max-width: 1280px; }
    .hero { padding-top: 280px; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center;}
    .hero__content { max-width:1280px; gap: 10px; align-items: center; text-align: center; }
    .hero__logo { width: 220px; }
    .hero__title { font-size: 75px; }
    .btn--cta { width: 260px; height: 72px; }
}

@media (min-width: 1920px) {
    .hero__content { margin-left: 0; margin-right: auto; align-items: center; text-align: center; }
}


.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}