:root {
    color-scheme: dark;
    --bg: #0b0d14;
    --bg-soft: #10131d;
    --surface: #151925;
    --surface-2: #1a1f2d;
    --line: rgba(255, 255, 255, .09);
    --text: #f4f4f6;
    --muted: #c0c3cc;
    --accent: #bca47a;
    --accent-bright: #e0c899;
    --max: 1180px;
    --radius: 22px;
    --font-body: "Avenir Next", Avenir, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-head: "Avenir Next", Avenir, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 18px; line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 790px; }
.article-width { max-width: 760px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; background: var(--text); color: var(--bg); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(11, 13, 20, .86); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 1.15rem var(--font-head); letter-spacing: -.02em; }
.brand-mark { display: grid; width: 34px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(224, 200, 153, .4); border-radius: 10px; background: linear-gradient(135deg, rgba(224, 200, 153, .2), rgba(224, 200, 153, .03)); color: var(--accent-bright); }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { color: #d2d4da; font-weight: 600; font-size: 1rem; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--accent-bright); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: currentColor; }
.breadcrumbs { padding-block: 18px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .95rem; }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: #555a68; }
.breadcrumbs a:hover { color: var(--text); }

.hero { position: relative; overflow: hidden; min-height: 720px; display: grid; align-items: center; border-bottom: 1px solid var(--line); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-glow { position: absolute; width: 550px; height: 550px; left: -180px; top: 80px; border-radius: 50%; background: rgba(188, 164, 122, .12); filter: blur(110px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 80px; align-items: center; padding-block: 95px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; color: var(--accent-bright); font-size: .76rem; line-height: 1.4; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #75c39a; box-shadow: 0 0 0 5px rgba(117, 195, 154, .1); }
h1, h2, h3 { margin-top: 0; font-family: var(--font-head); line-height: 1.12; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; font-size: clamp(3rem, 6vw, 5.3rem); }
h1 em { color: var(--accent-bright); font-style: normal; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
p { margin-top: 0; }
.hero-text { max-width: 660px; color: #d0d2d9; font-size: 1.18rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; font-weight: 700; font-size: .93rem; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent-bright); color: #17130d; }
.button-primary:hover { background: #f0d8a9; }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); color: var(--text); }
.button-secondary:hover { border-color: rgba(224,200,153,.35); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #b7bac3; font-size: .86rem; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.hero-panel { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(28, 32, 44, .95), rgba(16, 19, 29, .95)); box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.hero-panel > p { position: relative; margin-bottom: 18px; color: #b7bac3; font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-panel > a { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; padding: 16px; border-top: 1px solid var(--line); }
.hero-panel > a:hover { background: rgba(255,255,255,.025); }
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel small { color: var(--muted); font-size: .84rem; }
.icon-box { display: grid; width: 42px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(224,200,153,.18); border-radius: 12px; background: rgba(224,200,153,.08); color: var(--accent-bright); }
.orb { position: absolute; border-radius: 50%; filter: blur(55px); pointer-events: none; }
.orb-one { width: 160px; height: 160px; right: -60px; top: -40px; background: rgba(142, 98, 207, .17); }
.orb-two { width: 140px; height: 140px; left: -60px; bottom: -60px; background: rgba(188, 164, 122, .12); }

.section { padding-block: 110px; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-bright); font-weight: 700; font-size: .96rem; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.home-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-grid.large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.category-card, .guide-card { position: relative; min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.category-card { display: flex; flex-direction: column; align-items: flex-start; }
.category-card:hover, .guide-card:hover { transform: translateY(-5px); border-color: rgba(224,200,153,.25); background: var(--surface-2); }
.category-card .icon-box { margin-bottom: 38px; }
.category-card p, .guide-card p { color: var(--muted); font-size: 1.0625rem; line-height: 1.65; overflow-wrap: anywhere; }
.category-card .text-link { position: relative; z-index: 1; margin-top: auto; }
.category-card h3 a::after, .guide-card h3 a::after, .guide-card h2 a::after { content: ''; position: absolute; inset: 0; }
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.offer-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease; }
.offer-card:hover { transform: translateY(-5px); border-color: rgba(224,200,153,.24); }
.card-visual { position: relative; overflow: hidden; height: 190px; display: grid; place-items: center; background: radial-gradient(circle at 70% 20%, var(--card-glow, rgba(188,164,122,.26)), transparent 38%), linear-gradient(145deg, #202432, #11141d); }
.card-visual::before, .detail-visual::before { content: ''; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.card-visual::after, .detail-visual::after { content: ''; position: absolute; width: 110px; height: 110px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.card-visual > span { position: relative; z-index: 1; color: rgba(255,255,255,.9); font: 700 4.6rem var(--font-head); text-shadow: 0 12px 40px rgba(0,0,0,.35); }
.accent-rose { --card-glow: rgba(190, 72, 105, .3); }
.accent-violet { --card-glow: rgba(133, 91, 210, .32); }
.accent-amber { --card-glow: rgba(219, 151, 65, .28); }
.accent-blue { --card-glow: rgba(53, 119, 203, .32); }
.accent-teal { --card-glow: rgba(36, 159, 153, .3); }
.accent-green { --card-glow: rgba(71, 153, 100, .3); }
.card-content { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 25px; }
.card-content p:not(.eyebrow) { min-height: 76px; color: var(--muted); font-size: 1.0625rem; }
.card-content .text-link { margin-top: auto; }
.split-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.split-panel > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.feature-list > div { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.feature-list > div:last-child { border-bottom: 1px solid var(--line); }
.feature-list > div > span { color: var(--accent-bright); font: 700 .8rem var(--font-head); }
.feature-list p { margin: 0; color: var(--muted); }
.feature-list strong { display: block; color: var(--text); font: 700 1.05rem var(--font-head); }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.guide-card { min-width: 0; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; }
.guide-card h2, .guide-card h3 { max-width: 100%; margin-bottom: 16px; font-size: clamp(1.6rem, 2vw, 1.9rem); line-height: 1.2; overflow-wrap: anywhere; word-break: normal; }
.guide-card .text-link { margin-top: auto; position: relative; z-index: 1; }
.guide-card .eyebrow .icon { width: 15px; }

.page-hero { padding: 72px 0 62px; text-align: center; background: radial-gradient(circle at 50% 10%, rgba(188,164,122,.11), transparent 38%); border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-block: 75px; }
.page-hero h1, .detail-hero h1, .article-hero h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
.page-hero p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.page-hero .eyebrow { justify-content: center; }
.large-icon { width: 58px; margin: 0 auto 22px; }
.detail-hero { padding: 80px 0 100px; border-bottom: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); gap: 80px; align-items: center; }
.detail-grid > div:first-child { min-width: 0; }
.detail-hero h1 { overflow-wrap: anywhere; }
.detail-visual { position: relative; min-height: 400px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 65% 25%, var(--card-glow), transparent 40%), linear-gradient(145deg, #202432, #10121a); }
.detail-visual > span { position: relative; z-index: 1; font: 700 8rem var(--font-head); }
.detail-visual > small { position: absolute; bottom: 25px; left: 28px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.fineprint { margin-top: 15px; color: #aeb1ba; font-size: .84rem; }
.content-grid { display: grid; grid-template-columns: 1fr 370px; gap: 80px; align-items: start; }
.prose { color: #d0d2d8; }
.prose h2 { margin-top: 50px; color: var(--text); font-size: 1.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose code { color: var(--accent-bright); }
.check-list { padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; padding-block: 8px; }
.check-list .icon { color: #75c39a; }
.info-card { position: sticky; top: 105px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.info-card h2 { font-size: 1.35rem; }
.info-card > a { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.info-card strong, .info-card small { display: block; }
.info-card small { color: var(--muted); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 0; cursor: pointer; font: 700 1.05rem var(--font-head); }
.faq details p { padding: 0 0 22px; color: var(--muted); }
.article-hero { padding: 95px 0 75px; background: radial-gradient(circle at 50% 0, rgba(188,164,122,.1), transparent 43%); }
.article-hero p:not(.eyebrow) { color: var(--muted); font-size: 1.14rem; }
.article-body { padding-bottom: 110px; color: #d0d2d8; font-size: 1.06rem; }
.article-body > section { position: relative; padding: 50px 0 30px; border-top: 1px solid var(--line); }
.article-body h2 { color: var(--text); font-size: 1.8rem; }
.section-number { color: var(--accent-bright); font: 700 .75rem var(--font-head); letter-spacing: .12em; }
.notice { margin-bottom: 45px; padding: 18px 20px; border: 1px solid rgba(224,200,153,.2); border-left: 3px solid var(--accent); border-radius: 10px; background: rgba(188,164,122,.06); color: #bec0c8; font-size: .88rem; }
.article-cta { margin-top: 50px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.article-cta h2 { font-size: 1.6rem; }
.legal h2 { font-size: 1.7rem; }
.contact-card { margin: 30px 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-card a { font-size: 1.2rem; }

.site-footer { padding-top: 70px; border-top: 1px solid var(--line); background: #080a0f; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; padding-bottom: 60px; }
.footer-grid > div:first-child p { max-width: 360px; margin-top: 20px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--text); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 9px 0; font-size: .95rem; }
.footer-grid a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid var(--line); font-size: .78rem; }
.age-gate { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(5, 6, 10, .88); backdrop-filter: blur(14px); }
.age-gate[hidden] { display: none; }
.age-panel { width: min(100%, 520px); padding: 40px; border: 1px solid rgba(224,200,153,.25); border-radius: 26px; background: #131722; box-shadow: 0 40px 100px rgba(0,0,0,.55); text-align: center; }
.age-panel .eyebrow { justify-content: center; }
.age-panel h2 { font-size: 2rem; }
.age-panel > p:not(.eyebrow):not(.fineprint) { color: var(--muted); }
.age-panel .button-row { justify-content: center; }
.age-symbol { display: grid; width: 72px; aspect-ratio: 1; margin: 0 auto 22px; place-items: center; border: 1px solid rgba(224,200,153,.35); border-radius: 50%; color: var(--accent-bright); font: 800 1.3rem var(--font-head); }

@media (max-width: 980px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid, .detail-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-panel { max-width: 620px; }
    .content-grid { grid-template-columns: 1fr; }
    .info-card { position: static; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; left: 14px; right: 14px; top: 68px; display: none; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #151925; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 11px 10px; }
    .hero-grid { gap: 55px; padding-block: 70px; }
    h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
    .section { padding-block: 75px; }
    .category-grid, .category-grid.large, .guide-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .split-panel { grid-template-columns: 1fr; gap: 45px; }
    .desktop-link { display: none; }
    .detail-hero { padding-block: 55px 75px; }
    .detail-grid { gap: 45px; }
    .detail-visual { min-height: 300px; }
    .content-grid { gap: 45px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
    .button-row .button { width: 100%; }
    .trust-row { display: grid; }
    .hero-panel { padding: 16px; }
    .hero-panel > a { padding-inline: 5px; }
    .page-hero { padding-block: 70px 55px; }
    .age-panel { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
