@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg: #f4efe4;
    --bg-warm: #ece5d6;
    --bg-dark: #1a2b21;
    --bg-card: #fffcf5;
    --text: #2a2a28;
    --text-mid: #5e5a52;
    --text-soft: #8a8578;
    --text-inv: #f0ebe2;
    --gold: #c8912a;
    --gold-hover: #b07e1f;
    --green: #4a8c5c;
    --green-light: #6aad7a;
    --green-pale: rgba(74, 140, 92, 0.08);
    --border: #d9d1c3;
    --border-light: #e8e1d5;
    --red-soft: #c0392b;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --mw: 1280px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 28px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 48px);
}

.kicker {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 12px;
}

.h-lg {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.12;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.h-md {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.2;
    color: var(--bg-dark);
    margin-bottom: 14px;
}

.sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 540px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.15s ease;
    letter-spacing: 0.3px;
}

.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-gold:active { transform: scale(0.97) translateY(0); }

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in.vis { opacity: 1; transform: translateY(0); }

.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 43, 33, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.age-overlay.gone { opacity: 0; pointer-events: none; }

.age-box {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 52px 44px;
    text-align: center;
    max-width: 380px;
    width: 90%;
}

.age-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--red-soft);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.age-box h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.age-box p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.55;
}

.age-yes {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 48px;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background 0.3s var(--ease), transform 0.15s ease;
}

.age-yes:hover { background: var(--gold-hover); }
.age-yes:active { transform: scale(0.96); }

.cbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    background: var(--bg-dark);
    color: var(--text-inv);
    padding: 22px 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cbar.show { transform: translateY(0); }
.cbar.gone { transform: translateY(100%); }

.cbar-inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cbar-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(240,235,226,0.8);
    max-width: 620px;
}

.cbar-text a { color: var(--gold); transition: opacity 0.2s; }
.cbar-text a:hover { opacity: 0.8; }

.cbar-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.cb {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
}

.cb-accept { background: var(--gold); color: #fff; border-color: var(--gold); }
.cb-accept:hover { background: var(--gold-hover); }
.cb-decline { background: transparent; color: var(--text-inv); border-color: rgba(255,255,255,0.18); }
.cb-decline:hover { border-color: rgba(255,255,255,0.35); }
.cb-settings { background: transparent; color: rgba(240,235,226,0.55); border-color: transparent; }
.cb-settings:hover { color: var(--text-inv); }

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: rgba(244,239,228,0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s var(--ease);
}

.nav.stuck { box-shadow: 0 2px 12px rgba(26,43,33,0.05); }

.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-mid);
    transition: color 0.25s var(--ease);
}

.nav-links a:hover { color: var(--gold); }

.nav-play {
    background: var(--gold);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: var(--r-sm);
    transition: background 0.25s var(--ease), transform 0.15s ease;
}

.nav-play:hover { background: var(--gold-hover); }
.nav-play:active { transform: scale(0.97); }

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.burger.on span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

.mob-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px clamp(18px, 4vw, 48px);
    z-index: 4999;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.mob-menu.on { transform: translateY(0); opacity: 1; }

.mob-menu a {
    display: block;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 16px;
    padding: 14px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s;
}

.mob-menu a:last-child { border-bottom: none; }
.mob-menu a:hover { color: var(--gold); }

.hero-grid {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: min(82vh, 700px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hero-txt { max-width: 500px; }

.hero-pill {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    background: var(--green-pale);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1.5px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
}

.hero-p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 420px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--r-xl);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-xl);
    opacity: 0.2;
    pointer-events: none;
}

.hiw { padding: 100px 0 60px; }

.steps {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--border-light);
}

.step:first-child { border-top: 1px solid var(--border-light); }

.step-n {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 38px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    letter-spacing: -2px;
}

.step-b h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--bg-dark);
}

.step-b p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.55;
    max-width: 460px;
}

.resp-note { padding: 40px 0 80px; }

.resp-note-box {
    background: var(--green-pale);
    border-left: 3px solid var(--green);
    padding: 28px 32px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    max-width: 700px;
}

.resp-note-box p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
}

.rules-band {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.rules-band-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rules-band-bg img { width: 100%; height: 100%; object-fit: cover; }

.rules-band-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,43,33,0.93), rgba(26,43,33,0.8));
}

.rules-band-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.rules-band .kicker { color: var(--green-light); }
.rules-band .h-lg { color: var(--text-inv); }

.rl { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.rl-item { display: flex; gap: 14px; align-items: flex-start; }

.rl-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200,145,42,0.18);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.rl-item p { font-size: 15px; color: rgba(240,235,226,0.78); line-height: 1.5; }

.rules-band-cta { margin-top: 36px; }

.reviews { padding: 100px 0; }

.rev-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.rev {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: border-color 0.3s var(--ease);
}

.rev:hover { border-color: var(--gold); }
.rev:first-child { grid-row: 1 / 3; display: flex; flex-direction: column; }

.rev-stars {
    color: var(--gold);
    font-size: 16px;
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.rev-quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 22px;
    font-style: italic;
    flex: 1;
}

.rev-who { display: flex; align-items: center; gap: 12px; }

.rev-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(74,140,92,0.15);
}

.rev-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--bg-dark);
}

.rev-tag {
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 2px;
}

.about-eden {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    margin-top: 40px;
}

.about-vis img {
    width: 100%;
    border-radius: var(--r-lg);
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.about-items { display: flex; flex-direction: column; gap: 28px; padding-top: 4px; }

.about-item { padding-bottom: 28px; border-bottom: 1px solid var(--border-light); }
.about-item:last-child { border-bottom: none; padding-bottom: 0; }

.about-item h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.about-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.updates {
    padding: 100px 0;
    background: var(--bg-warm);
}

.upd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
}

.upd-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    padding: 20px;
    transition: border-color 0.3s var(--ease);
}

.upd-card:hover { border-color: var(--gold); }

.upd-thumb {
    border-radius: var(--r-sm);
    overflow: hidden;
    aspect-ratio: 1;
}

.upd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.upd-card:hover .upd-thumb img { transform: scale(1.04); }

.upd-label {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.upd-title {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--bg-dark);
    line-height: 1.35;
    margin-bottom: 8px;
}

.upd-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.upd-cta { margin-top: 36px; text-align: center; }

.team { padding: 100px 0; }

.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
    max-width: 700px;
}

.t-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: border-color 0.3s var(--ease);
}

.t-card:hover { border-color: var(--green); }

.t-photo {
    width: 92px;
    height: 92px;
    border-radius: var(--r-md);
    object-fit: cover;
    background: var(--bg-warm);
}

.t-info h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--bg-dark);
    margin-bottom: 3px;
}

.t-role {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.t-bio { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.faq {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-inv);
}

.faq .kicker { color: var(--green-light); }
.faq .h-lg { color: var(--text-inv); }
.faq .sub { color: rgba(240,235,226,0.55); }

.faq-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 48px;
}

.faq-side {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-side p {
    font-size: 15px;
    color: rgba(240,235,226,0.55);
    line-height: 1.65;
    margin-top: 14px;
}

.faq-list { display: flex; flex-direction: column; }

.fq { border-bottom: 1px solid rgba(255,255,255,0.07); overflow: hidden; }

.fq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-inv);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: color 0.25s var(--ease);
}

.fq-q:hover { color: var(--gold); }

.fq-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    font-size: 18px;
}

.fq.on .fq-ico {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.fq-a-inner {
    padding: 0 0 22px;
    font-size: 14px;
    color: rgba(240,235,226,0.6);
    line-height: 1.75;
    max-width: 480px;
}

.ft {
    background: var(--bg-dark);
    color: var(--text-inv);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 0;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ft-brand img { height: 38px; width: auto; margin-bottom: 14px; }

.ft-brand p {
    font-size: 13px;
    color: rgba(240,235,226,0.45);
    line-height: 1.6;
    max-width: 300px;
}

.ft-col h4 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
    color: rgba(240,235,226,0.65);
}

.ft-col a {
    display: block;
    font-size: 13px;
    color: rgba(240,235,226,0.4);
    padding: 5px 0;
    transition: color 0.2s;
}

.ft-col a:hover { color: var(--gold); }

.ft-resp {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ft-resp-box {
    background: rgba(192,57,43,0.1);
    border: 1px solid rgba(192,57,43,0.18);
    border-radius: var(--r-md);
    padding: 24px 28px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(240,235,226,0.65);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.ft-resp-box strong { color: #e67e73; font-weight: 600; }

.ft-regs {
    padding: 24px 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ft-regs a {
    opacity: 0.4;
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
}

.ft-regs a:hover { opacity: 0.75; }
.ft-regs img { height: 30px; width: auto; filter: brightness(0) invert(1); }

.ft-bottom {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(240,235,226,0.3);
}

.pg-head {
    padding: 120px 0 44px;
    border-bottom: 1px solid var(--border-light);
}

.pg-head p { font-size: 15px; color: var(--text-mid); max-width: 500px; }

.legal {
    padding: 52px 0 100px;
    max-width: 700px;
}

.legal h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--bg-dark);
    margin-top: 38px;
    margin-bottom: 12px;
}

.legal h2:first-child { margin-top: 0; }

.legal p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal ul { list-style: none; margin: 0 0 18px; padding: 0; }

.legal ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

.legal a { color: var(--gold); transition: opacity 0.2s; }
.legal a:hover { opacity: 0.75; }
.legal strong { color: var(--text); font-weight: 600; }

.legal-date {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
}

.gr-sections { padding: 52px 0 100px; }

.gr-sec {
    padding: 44px 0;
    border-bottom: 1px solid var(--border-light);
}

.gr-sec:first-child { padding-top: 0; }
.gr-sec:last-child { border-bottom: none; }

.gr-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 36px;
    align-items: start;
}

.gr-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.18;
    line-height: 1;
    letter-spacing: -3px;
}

.gr-label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-top: 6px;
}

.gr-body h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.gr-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 560px;
}

.gr-body ul { list-style: none; margin: 0; padding: 0; }

.gr-body ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 7px;
}

.gr-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.45;
}

.game-wrap {
    padding: 96px 0 40px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.slot-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
}

.slot-head { text-align: center; margin-bottom: 22px; }
.slot-head p { font-size: 14px; color: var(--text-soft); }

.pts-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pts-box {
    background: var(--bg-dark);
    color: var(--text-inv);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    padding: 10px 26px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pts-lbl {
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(240,235,226,0.45);
}

.pts-val {
    color: var(--gold);
    min-width: 56px;
    text-align: right;
}

.win-box {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--green);
    min-width: 130px;
    text-align: center;
    padding: 10px 18px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    opacity: 0;
    transition: all 0.3s ease;
}

.win-box.won { opacity: 1; color: #2e7d32; background: rgba(46,125,50,0.06); border-color: rgba(46,125,50,0.18); }
.win-box.lost { opacity: 1; color: var(--text-soft); }

.slot {
    background: var(--bg-dark);
    border-radius: var(--r-xl);
    padding: 24px;
    width: 100%;
    max-width: 540px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.slot::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--r-xl);
    pointer-events: none;
}

.reels-frame {
    background: rgba(0,0,0,0.28);
    border-radius: var(--r-lg);
    padding: 10px;
    position: relative;
}

.pay-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(200,145,42,0.35);
}

.pay-line.row-0 { top: calc(10px + (100% - 20px) / 6); }
.pay-line.row-1 { top: 50%; }
.pay-line.row-2 { bottom: calc(10px + (100% - 20px) / 6); }
.pay-line.lit { opacity: 1; }

.reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.reel { display: flex; flex-direction: column; gap: 7px; }

.cell {
    aspect-ratio: 1;
    background: rgba(244,239,228,0.05);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.3s ease;
}

.cell img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cell.spin img { animation: cellSpin 0.1s linear infinite; }
.cell.hit { background: rgba(200,145,42,0.14); }
.cell.hit img { transform: scale(1.12); }

@keyframes cellSpin {
    0% { transform: translateY(-80%) scale(0.85); opacity: 0.3; }
    50% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(80%) scale(0.85); opacity: 0.3; }
}

.slot-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.bet-area { display: flex; align-items: center; gap: 8px; }

.bet-tag {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(240,235,226,0.35);
}

.bet-row { display: flex; gap: 4px; }

.bet-pick {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text-inv);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 13px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.bet-pick:hover { background: rgba(255,255,255,0.09); }
.bet-pick.on { background: var(--gold); border-color: var(--gold); color: #fff; }

.go-btn {
    background: var(--gold);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 42px;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.go-btn:hover:not(:disabled) { background: var(--gold-hover); transform: translateY(-2px); }
.go-btn:active:not(:disabled) { transform: scale(0.97); }
.go-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.mini-rules { max-width: 540px; width: 100%; margin-top: 6px; }

.mr-toggle {
    background: none;
    border: none;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.mr-toggle:hover { color: var(--gold); }

.mr-toggle .ri-arrow-right-s-fill { transition: transform 0.3s var(--ease); font-size: 16px; }
.mr-toggle.on .ri-arrow-right-s-fill { transform: rotate(90deg); }

.mr-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }

.mr-inner {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mr-col h4 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    color: var(--text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pr {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    padding: 4px 0;
}

.pr img { width: 20px; height: 20px; object-fit: contain; }

.pr span {
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-head);
    margin-left: auto;
}

.mr-col p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.game-note {
    text-align: center;
    padding: 16px 0 36px;
    font-size: 12px;
    color: var(--text-soft);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; padding-top: 100px; min-height: auto; }
    .hero-img { order: -1; max-width: 340px; margin: 0 auto; }
    .hero-img img { aspect-ratio: 4 / 3; }
    .rules-band-inner { max-width: 100%; }
    .rev-grid { grid-template-columns: 1fr; }
    .rev:first-child { grid-row: auto; }
    .about-layout { grid-template-columns: 1fr; }
    .about-vis { order: -1; }
    .about-vis img { aspect-ratio: 16 / 9; max-height: 260px; }
    .upd-grid { grid-template-columns: 1fr; }
    .team-row { grid-template-columns: 1fr; max-width: 380px; }
    .faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .faq-side { position: static; }
    .ft-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .mob-menu { display: block; }
    .hero-title { font-size: 32px; }
    .h-lg { font-size: 26px; }
    .step { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
    .step-n { font-size: 26px; }
    .upd-card { grid-template-columns: 90px 1fr; gap: 14px; padding: 16px; }
    .t-card { grid-template-columns: 72px 1fr; gap: 14px; padding: 18px; }
    .t-photo { width: 72px; height: 72px; }
    .gr-row { grid-template-columns: 1fr; gap: 10px; }
    .gr-num { font-size: 38px; }
    .ft-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .cbar-btns { flex-direction: column; width: 100%; }
    .cb { width: 100%; text-align: center; }
    .slot { padding: 14px; border-radius: var(--r-lg); }
    .reels-frame { padding: 7px; }
    .reels { gap: 4px; }
    .reel { gap: 4px; }
    .bet-pick { padding: 6px 10px; font-size: 12px; }
    .go-btn { padding: 12px 28px; font-size: 14px; }
    .mr-inner { grid-template-columns: 1fr; gap: 14px; }
    .pts-bar { gap: 10px; }
    .pts-box { font-size: 15px; padding: 8px 16px; }
    .resp-note-box { padding: 20px; }
}
