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

:root {
    --ink: #e8e0d6;
    --surface: #0d0a08;
    --surface-raised: #1a1410;
    --surface-overlay: #241c14;
    --crimson: #8c1420;
    --crimson-glow: #b91c2a;
    --crimson-deep: #5e0e16;
    --gold-muted: #a3875a;
    --gold-dim: #7a6542;
    --bark: #2e2318;
    --smoke: #b0a89e;
    --ash: #6b6560;
    --parchment: #f0e6d8;
}

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

html {
    scroll-behavior: smooth;
    background: var(--surface);
    color: var(--ink);
}

body {
    font-family: 'Dosis', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--crimson-glow); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-muted); }

img { max-width: 100%; display: block; }

#siteNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(13,10,8,.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--bark);
    transition: box-shadow .3s;
}
#siteNav.pinned { box-shadow: 0 2px 18px rgba(140,20,32,.25); }

.nav-row {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 62px;
}

.klogo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.klogo img {
    height: 38px;
    width: auto;
}
.klogo b {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: .02em;
}

.pgnav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}
.pgnav li a {
    font-weight: 600;
    font-size: .92rem;
    color: var(--smoke);
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: color .25s;
}
.pgnav li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--crimson-glow);
    transition: width .3s ease;
}
.pgnav li a:hover { color: var(--ink); }
.pgnav li a:hover::after { width: 100%; }

.acc-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bGhost {
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    color: var(--smoke);
    background: transparent;
    border: 1px solid var(--ash);
    padding: 7px 18px;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: border-color .2s, color .2s;
}
.bGhost:hover { border-color: var(--crimson-glow); color: var(--ink); }

.bSolid {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--parchment);
    background: var(--crimson);
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
}
.bSolid:hover { background: var(--crimson-glow); transform: translateY(-1px); }

.mobMenu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobMenu span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .25s, opacity .2s;
}

#landingBlock {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 62px 28px 40px;
}

.bgLayer {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bgLayer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(140,20,32,.18), transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(93,14,22,.12), transparent 50%),
        linear-gradient(170deg, #0d0a08 0%, #1a0f0c 40%, #0d0a08 100%);
    z-index: 1;
}
.bgLayer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    background-size: 180px;
    z-index: 2;
    pointer-events: none;
}

.mainMsg {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.mainMsg .blade {
    width: 52px;
    height: 2px;
    background: var(--crimson-glow);
    margin: 0 auto 22px;
    animation: bladeIn .8s ease-out forwards;
}

@keyframes bladeIn {
    from { width: 0; opacity: 0; }
    to { width: 52px; opacity: 1; }
}

.mainMsg h1 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.12;
    color: var(--parchment);
    margin-bottom: 18px;
    animation: riseUp .7s ease-out .15s both;
}
.mainMsg h1 em {
    font-style: normal;
    color: var(--crimson-glow);
}

.mainMsg .desc {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--smoke);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
    animation: riseUp .7s ease-out .3s both;
}

@keyframes riseUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.actRow {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: riseUp .7s ease-out .45s both;
}

.bLg {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .25s;
    border: none;
    display: inline-block;
}
.bLg.red {
    background: var(--crimson);
    color: var(--parchment);
}
.bLg.red:hover {
    background: var(--crimson-glow);
    box-shadow: 0 4px 22px rgba(185,28,42,.3);
    transform: translateY(-2px);
}
.bLg.outline {
    background: transparent;
    color: var(--smoke);
    border: 1px solid var(--ash);
}
.bLg.outline:hover {
    border-color: var(--gold-muted);
    color: var(--ink);
}

.ageTag {
    margin-top: 24px;
    font-size: .78rem;
    color: var(--ash);
    letter-spacing: .02em;
    animation: riseUp .7s ease-out .6s both;
}
.ageTag strong { color: var(--crimson-glow); font-weight: 700; }

.ornament {
    position: absolute;
    z-index: 2;
    opacity: .06;
    pointer-events: none;
}
.ornament.L {
    left: -40px;
    top: 20%;
    width: 260px;
    height: 420px;
    border-right: 1px solid var(--crimson);
    border-top: 1px solid var(--crimson);
}
.ornament.R {
    right: -40px;
    bottom: 15%;
    width: 200px;
    height: 340px;
    border-left: 1px solid var(--gold-muted);
    border-bottom: 1px solid var(--gold-muted);
}

.warnBar {
    background: var(--crimson-deep);
    padding: 10px 28px;
    text-align: center;
    font-size: .78rem;
    color: var(--parchment);
    font-weight: 600;
    letter-spacing: .03em;
}

#pgFooter {
    background: var(--surface-raised);
    border-top: 1px solid var(--bark);
    padding: 48px 28px 24px;
}

.ftInner {
    max-width: 1180px;
    margin: 0 auto;
}

.ftRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ftLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ftLogo img { height: 32px; width: auto; }
.ftLogo b {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

.ftLinks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.ftLinks a {
    font-size: .85rem;
    color: var(--smoke);
    font-weight: 400;
    transition: color .2s;
}
.ftLinks a:hover { color: var(--ink); }

.ftAddr {
    font-size: .82rem;
    color: var(--ash);
    line-height: 1.7;
    text-align: right;
}
.ftAddr a { color: var(--ash); }
.ftAddr a:hover { color: var(--gold-muted); }

.ftLine {
    height: 1px;
    background: var(--bark);
    margin-bottom: 22px;
}

.safeBlock {
    background: var(--crimson-deep);
    border-radius: 4px;
    padding: 28px 26px;
    margin-bottom: 24px;
}
.safeBlock h3 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--parchment);
    margin-bottom: 12px;
}
.safeBlock p {
    font-size: .84rem;
    color: rgba(240,230,216,.82);
    line-height: 1.65;
    margin-bottom: 10px;
}
.safeBlock p:last-child { margin-bottom: 0; }

.regRow {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.regRow a {
    display: inline-block;
    line-height: 0;
}
.regRow img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .45;
    transition: opacity .2s;
}
.regRow img:hover { opacity: .75; }

.ftEnd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cpyrt {
    font-size: .76rem;
    color: var(--ash);
}

.dlOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}
.dlOverlay.on { display: flex; }

.dlBox {
    background: var(--surface-raised);
    border: 1px solid var(--bark);
    border-radius: 4px;
    padding: 36px 32px 28px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: boxPop .3s ease-out;
}

@keyframes boxPop {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dlBox .xBtn {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    color: var(--ash);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color .2s;
}
.dlBox .xBtn:hover { color: var(--ink); }

.dlBox h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--parchment);
    margin-bottom: 6px;
}
.dlBox .hint {
    font-size: .85rem;
    color: var(--ash);
    margin-bottom: 22px;
}

.fld {
    margin-bottom: 14px;
}
.fld label {
    display: block;
    font-size: .78rem;
    color: var(--smoke);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
}
.fld input {
    width: 100%;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--bark);
    border-radius: 3px;
    color: var(--ink);
    font-family: 'Dosis', sans-serif;
    font-size: .95rem;
    transition: border-color .2s;
    outline: none;
}
.fld input:focus { border-color: var(--crimson-glow); }
.fld input::placeholder { color: var(--ash); }

.dlBox .goBtn {
    width: 100%;
    margin-top: 8px;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    padding: 11px 0;
    background: var(--crimson);
    color: var(--parchment);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .2s;
}
.dlBox .goBtn:hover { background: var(--crimson-glow); }

.dlBox .swLnk {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: .82rem;
    color: var(--ash);
}
.dlBox .swLnk a { color: var(--crimson-glow); font-weight: 600; }

#notif {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    background: var(--crimson-deep);
    border: 1px solid var(--crimson);
    color: var(--parchment);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    animation: notifDrop .3s ease-out;
}
#notif.on { display: block; }

@keyframes notifDrop {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

#ageWall {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 28px;
}
#ageWall.on { display: flex; }

#ageWall .ageInner {
    max-width: 380px;
}
#ageWall h2 {
    font-family: 'Bitter', serif;
    font-size: 1.8rem;
    color: var(--parchment);
    margin-bottom: 8px;
}
#ageWall p {
    color: var(--smoke);
    font-size: .95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}
#ageWall .pickRow {
    display: flex;
    gap: 14px;
    justify-content: center;
}

#cookieTray {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1800;
    background: var(--surface-raised);
    border-top: 1px solid var(--bark);
    padding: 18px 28px;
    animation: traySlide .4s ease-out;
}
#cookieTray.on { display: block; }

@keyframes traySlide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.ckInner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ckInner .ckTxt {
    flex: 1;
    min-width: 240px;
    font-size: .84rem;
    color: var(--smoke);
    line-height: 1.55;
}
.ckInner .ckTxt a {
    color: var(--crimson-glow);
    text-decoration: underline;
}

.ckInner .ckActs {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.innerWrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 28px 64px;
}
.innerWrap h1 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--parchment);
    margin-bottom: 8px;
    line-height: 1.25;
}
.innerWrap .updated {
    font-size: .78rem;
    color: var(--ash);
    margin-bottom: 28px;
}
.innerWrap h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--parchment);
    margin-top: 32px;
    margin-bottom: 10px;
}
.innerWrap p {
    font-size: .93rem;
    color: var(--smoke);
    line-height: 1.65;
    margin-bottom: 14px;
}
.innerWrap p:last-child { margin-bottom: 0; }
.innerWrap ul {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}
.innerWrap ul li {
    font-size: .93rem;
    color: var(--smoke);
    line-height: 1.65;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}
.innerWrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--crimson);
    border-radius: 50%;
}
.innerWrap a { color: var(--crimson-glow); }
.innerWrap a:hover { color: var(--gold-muted); }

.pgBlock {
    padding: 72px 28px;
    max-width: 1180px;
    margin: 0 auto;
}

#tryGame {
    background: var(--surface);
}
#tryGame .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
#tryGame .split .txt h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--parchment);
    margin-bottom: 12px;
    line-height: 1.2;
}
#tryGame .split .txt p {
    color: var(--smoke);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 22px;
}
#tryGame .split .preview {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--bark);
    aspect-ratio: 16/10;
    background: var(--surface-raised);
}
#tryGame .split .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#tryGame .split .preview .badge18 {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--crimson);
    color: var(--parchment);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 2px;
    letter-spacing: .03em;
}

#comingSoon {
    background: var(--surface-raised);
    border-top: 1px solid var(--bark);
    border-bottom: 1px solid var(--bark);
}
#comingSoon .pgBlock { text-align: center; }
#comingSoon h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--parchment);
    margin-bottom: 10px;
}
#comingSoon .subhead {
    color: var(--gold-muted);
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}
#comingSoon p.lead {
    color: var(--smoke);
    font-size: .95rem;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}
#comingSoon .updateGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 36px;
    text-align: left;
}
#comingSoon .upItem {
    background: var(--surface);
    border: 1px solid var(--bark);
    border-radius: 4px;
    padding: 22px 20px;
}
#comingSoon .upItem .upTag {
    font-size: .72rem;
    font-weight: 700;
    color: var(--crimson-glow);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
#comingSoon .upItem h3 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--parchment);
    margin-bottom: 6px;
}
#comingSoon .upItem p {
    font-size: .84rem;
    color: var(--ash);
    line-height: 1.55;
}

#ourStory {
    background: var(--surface);
}
#ourStory .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
#ourStory .split .foto {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--bark);
    aspect-ratio: 4/3;
    background: var(--surface-raised);
}
#ourStory .split .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ourStory .split .narr h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--parchment);
    margin-bottom: 14px;
}
#ourStory .split .narr p {
    color: var(--smoke);
    font-size: .93rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
#ourStory .split .narr p:last-child { margin-bottom: 0; }

#rulesBanner {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#rulesBanner .bannerBg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
#rulesBanner .bannerBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#rulesBanner .bannerBg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,10,8,.78) 0%, rgba(13,10,8,.88) 100%);
}
#rulesBanner .bannerTxt {
    position: relative;
    z-index: 2;
    padding: 48px 28px;
    max-width: 560px;
}
#rulesBanner .bannerTxt h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--parchment);
    margin-bottom: 12px;
}
#rulesBanner .bannerTxt p {
    color: var(--smoke);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

#perks {
    background: var(--surface);
}
.perksGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.perkItem {
    background: var(--surface-raised);
    border: 1px solid var(--bark);
    border-radius: 4px;
    padding: 32px 26px 28px;
    position: relative;
    transition: border-color .25s;
}
.perkItem:hover { border-color: var(--crimson-deep); }
.perkItem .pNum {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--crimson);
    opacity: .35;
    line-height: 1;
    margin-bottom: 14px;
}
.perkItem h3 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--parchment);
    margin-bottom: 10px;
}
.perkItem p {
    font-size: .88rem;
    color: var(--ash);
    line-height: 1.6;
}
#perks .sectionHead {
    text-align: center;
    margin-bottom: 38px;
}
#perks .sectionHead h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--parchment);
    margin-bottom: 8px;
}
#perks .sectionHead p {
    color: var(--smoke);
    font-size: .95rem;
}

#faqBlock {
    background: var(--surface-raised);
    border-top: 1px solid var(--bark);
}
#faqBlock .sectionHead {
    text-align: center;
    margin-bottom: 32px;
}
#faqBlock .sectionHead h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--parchment);
}
.faqList {
    max-width: 700px;
    margin: 0 auto;
}
.faqItem {
    border-bottom: 1px solid var(--bark);
}
.faqItem:first-child { border-top: 1px solid var(--bark); }
.faqQ {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--ink);
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    font-size: .96rem;
    transition: color .2s;
}
.faqQ:hover { color: var(--crimson-glow); }
.faqArrow {
    font-size: 1.3rem;
    color: var(--ash);
    transition: transform .25s;
    line-height: 1;
}
.faqItem.open .faqArrow { transform: rotate(180deg); }
.faqA {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 4px;
}
.faqItem.open .faqA {
    max-height: 300px;
    padding: 0 4px 18px;
}
.faqA p {
    font-size: .88rem;
    color: var(--smoke);
    line-height: 1.6;
}

.revealFade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.revealFade.vis {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 820px) {
    .pgnav { display: none; }
    .mobMenu { display: block; }
    .pgnav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 62px; left: 0; right: 0;
        background: var(--surface-raised);
        border-bottom: 1px solid var(--bark);
        padding: 18px 28px;
        gap: 12px;
    }
    .ftRow { flex-direction: column; gap: 24px; }
    .ftAddr { text-align: left; }
    .ftLinks { gap: 18px; }
    #tryGame .split { grid-template-columns: 1fr; gap: 28px; }
    #ourStory .split { grid-template-columns: 1fr; gap: 28px; }
    .perksGrid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .nav-row { padding: 0 16px; height: 56px; }
    .klogo img { height: 30px; }
    .klogo b { font-size: 1.1rem; }
    #landingBlock { min-height: 40vh; padding: 56px 18px 32px; }
    .mainMsg h1 { font-size: 1.9rem; }
    .actRow { flex-direction: column; align-items: center; }
    .bLg { width: 100%; max-width: 280px; text-align: center; }
    .dlBox { padding: 28px 20px 22px; }
    #pgFooter { padding: 32px 18px 18px; }
    .pgBlock { padding: 48px 18px; }
    #rulesBanner { min-height: 260px; }
    .ckInner { flex-direction: column; text-align: center; }
    .ckInner .ckActs { justify-content: center; }
}
