:root {
    --ink: #07231d;
    --muted: #55766c;
    --line: #dce8e3;
    --cream: #fbf7ed;
    --green: #07835f;
    --green-dark: #073b31;
    --gold: #f8c94c;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(7, 35, 29, 0.12);
}

/* Site themes are selected from Admin Settings. Content and page structure
   remain identical; only colour, contrast, and accent treatment change. */
html[data-site-theme="royal-indigo"] {
    --ink: #17133e; --muted: #665f92; --line: #dedcff; --cream: #f7f7ff;
    --green: #5b5ce2; --green-dark: #2f2c83; --gold: #f5c451; --card: #ffffff;
    --shadow: 0 18px 45px rgba(49, 46, 129, .15);
}
html[data-site-theme="violet-neon"] {
    --ink: #2b113b; --muted: #805e94; --line: #f0d6ff; --cream: #fff8ff;
    --green: #b026d9; --green-dark: #5b1876; --gold: #37d4e8; --card: #ffffff;
    --shadow: 0 18px 45px rgba(168, 85, 247, .18);
}
html[data-site-theme="crimson-ember"] {
    --ink: #391018; --muted: #8e5a52; --line: #fed8d1; --cream: #fff7f3;
    --green: #dc3f4d; --green-dark: #8e2030; --gold: #f59e0b; --card: #ffffff;
    --shadow: 0 18px 45px rgba(220, 63, 77, .16);
}
html[data-site-theme="ocean-cyan"] {
    --ink: #063247; --muted: #4b7180; --line: #ccecf4; --cream: #f2fbfd;
    --green: #078aa8; --green-dark: #07556e; --gold: #f4b942; --card: #ffffff;
    --shadow: 0 18px 45px rgba(8, 145, 178, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(248, 201, 76, 0.18), transparent 32rem),
        linear-gradient(180deg, #fffdf7 0%, var(--cream) 100%);
    line-height: 1.6;
}

html[data-site-theme="royal-indigo"] body { background: radial-gradient(circle at top left, rgba(245, 196, 81, .18), transparent 32rem), linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
html[data-site-theme="violet-neon"] body { background: radial-gradient(circle at top left, rgba(217, 70, 239, .16), transparent 32rem), linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
html[data-site-theme="crimson-ember"] body { background: radial-gradient(circle at top left, rgba(245, 158, 11, .18), transparent 32rem), linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
html[data-site-theme="ocean-cyan"] body { background: radial-gradient(circle at top left, rgba(34, 211, 238, .18), transparent 32rem), linear-gradient(180deg, #fff 0%, var(--cream) 100%); }

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem clamp(1rem, 4vw, 4rem);
    background: rgba(251, 247, 237, 0.9);
    border-bottom: 1px solid rgba(7, 35, 29, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 900;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 35, 29, 0.16);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.92rem;
    font-weight: 750;
}

.site-nav a,
.menu-button,
.secondary-action {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.72);
}

.menu-button {
    display: none;
    color: var(--green-dark);
    font-weight: 850;
}

.hero,
.page-hero,
.section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(7, 131, 95, 0.25);
    background: rgba(7, 131, 95, 0.08);
    color: var(--green);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 1rem;
    font-size: clamp(2.65rem, 9vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.7rem, 5vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.2;
}

.lead {
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(1.05rem, 3.5vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    border-radius: 1.05rem;
    padding: 0.85rem 1.35rem;
    background: var(--gold);
    color: #171308;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(248, 201, 76, 0.34);
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    color: var(--green-dark);
    font-weight: 850;
}

.hero-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 2.5rem;
    background:
        linear-gradient(145deg, rgba(7, 59, 49, 0.95), rgba(7, 131, 95, 0.8)),
        radial-gradient(circle at 70% 25%, rgba(248, 201, 76, 0.3), transparent 14rem);
    box-shadow: var(--shadow);
}

.board-orbit {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.feature-tile {
    position: absolute;
    width: 12rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    padding: 1rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
    animation: floaty 6s ease-in-out infinite;
}

.tile-one { top: 16%; left: 10%; }
.tile-two { right: 8%; top: 42%; animation-delay: 0.8s; }
.tile-three { left: 20%; bottom: 14%; animation-delay: 1.4s; }

.section {
    padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-card,
.article-card,
.mini-list div,
.cta-strip {
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(7, 35, 29, 0.08);
}

.info-card {
    padding: 1.25rem;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.info-card span {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-card p,
.article-card p,
.split-section p,
.site-footer p,
.mini-list span {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1rem;
    align-items: start;
}

.mini-list {
    display: grid;
    gap: 0.85rem;
}

.mini-list div {
    padding: 1rem;
}

.mini-list strong,
.mini-list span {
    display: block;
}

.page-hero {
    padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.login-shell {
    max-width: 840px;
}

.login-card {
    width: min(100%, 520px);
    margin-top: 1.75rem;
    border: 1px solid rgba(7, 35, 29, 0.1);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    padding: clamp(1rem, 4vw, 1.4rem);
}

.login-card label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.phone-field {
    display: flex;
    align-items: center;
    min-height: 3.45rem;
    overflow: hidden;
    border: 1px solid rgba(7, 35, 29, 0.18);
    border-radius: 1.05rem;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.phone-field:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(7, 131, 95, 0.12);
}

.phone-field span {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    border-right: 1px solid rgba(7, 35, 29, 0.1);
    background: rgba(7, 131, 95, 0.08);
    padding: 0 0.9rem;
    color: var(--green-dark);
    font-weight: 950;
}

.phone-field input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 0.95rem;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 750;
}

.phone-field input::placeholder {
    color: rgba(85, 118, 108, 0.72);
    font-weight: 650;
}

.otp-step {
    margin-top: 1rem;
}

.otp-step label {
    display: block;
    margin: 0 0 0.45rem;
}

.otp-name-step {
    margin-top: 0.9rem;
}

.auth-text-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 3.45rem;
    border: 1px solid rgba(7, 35, 29, 0.18);
    border-radius: 1.05rem;
    outline: 0;
    background: #fff;
    padding: 0 0.95rem;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.auth-text-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(7, 131, 95, 0.12);
}

.auth-text-input::placeholder {
    color: rgba(85, 118, 108, 0.72);
    font-weight: 650;
}

.auth-message {
    min-height: 1.25rem;
    margin: 0.75rem 0 0;
    font-weight: 800;
}

.auth-message.is-error {
    color: #c02626;
}

.auth-message.is-success {
    color: var(--green);
}

.login-card .primary-action {
    width: 100%;
    margin-top: 0.85rem;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
}

.login-card p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-section {
    display: grid;
    gap: 1rem;
    padding-top: 0;
}

.article-card {
    padding: clamp(1.15rem, 4vw, 1.75rem);
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.25rem;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
    gap: 2rem;
    border-top: 1px solid rgba(7, 35, 29, 0.08);
    padding: 2.25rem clamp(1rem, 4vw, 4rem) max(1.25rem, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.62);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.05rem;
}

.footer-logo img { border-radius: 10px; object-fit: contain; }
.footer-brand-col p { max-width: 34rem; line-height: 1.6; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.footer-col { display: grid; align-content: start; gap: 0.5rem; }
.footer-col h4 { margin: 0 0 0.2rem; font-size: 0.92rem; color: var(--ink); }
.footer-col a { color: var(--muted); text-decoration: none; font-weight: 700; font-size: 0.88rem; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(7, 35, 29, 0.08); padding-top: 1rem; }
.footer-bottom p { margin: 0; font-size: 0.8rem; }

/* Keep the public footer part of the dark game landing theme and readable. */
.landing-body .site-footer {
    background: linear-gradient(135deg, #111827, #0b1120);
    border-top-color: #314259;
    color: #f8fafc;
}
.landing-body .footer-logo,
.landing-body .footer-col h4 { color: #f8fafc; }
.landing-body .site-footer p,
.landing-body .footer-col a { color: #cbd5e1; }
.landing-body .footer-col a:hover,
.landing-body .footer-col a:focus-visible { color: #facc15; }
.landing-body .footer-bottom { border-top-color: #314259; }

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

@media (max-width: 860px) {
    .menu-button {
        display: inline-flex;
    }

    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-card {
        min-height: 310px;
    }

    .card-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .cta-strip,
    .site-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem 1rem max(1rem, env(safe-area-inset-bottom));
    }
    .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
    .footer-col { min-width: 0; }
    .footer-col a { overflow-wrap: anywhere; }
    .footer-bottom { padding-top: 1rem; }

    .primary-action {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-links-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-brand-col p { margin-bottom: 0; }
    .footer-col { gap: 0.6rem; }
}

@media (max-width: 480px) {
    .site-header {
        padding-inline: 0.8rem;
    }

    .brand span {
        font-size: 1.05rem;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .hero,
    .page-hero,
    .section {
        width: min(100% - 1.4rem, 1120px);
    }

    h1 {
        font-size: clamp(2.25rem, 14vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-tile {
        width: 10.5rem;
        font-size: 0.9rem;
    }

    .login-card {
        border-radius: 1.35rem;
    }

    .phone-field input {
        font-size: 0.95rem;
    }
}
/* Public landing page — dark Ludo game layout */
.landing-body { background: #080a0e; color: #fff; min-height: 100vh; }
.landing-main { min-height: 100vh; padding: 4rem 4rem 4rem 21rem; }
.landing-sidebar { background: linear-gradient(180deg,#151b29,#10151f); border: 1px solid #314259; border-radius: 0 0 1rem 0; box-sizing: border-box; display: flex; flex-direction: column; height: 100vh; left: 0; padding: 2rem 1.6rem; position: fixed; top: 0; width: 16rem; z-index: 10; }
.landing-mark img { height: 3.5rem; object-fit: contain; width: 3.5rem; }
.landing-sidebar nav { display: grid; gap: 1.25rem; margin-top: 3rem; }
.landing-sidebar nav a { color: #d1d5db; font-size: 1.02rem; font-weight: 800; text-decoration: none; }
.landing-sidebar nav a.is-active { color: #facc15; }
.landing-play { background: #facc15; border-radius: .7rem; color: #111827; font-size: .9rem; font-weight: 900; margin-top: auto; padding: .85rem 1rem; text-align: center; text-decoration: none; text-transform: uppercase; }
.landing-mobile-header { display: none; }
.landing-hero { align-items: center; display: grid; gap: 4rem; grid-template-columns: minmax(0,1.35fr) minmax(17rem,.85fr); max-width: 90rem; min-height: 34rem; }
.landing-eyebrow { border: 1px solid #facc15; border-radius: 99px; color: #fff; display: inline-block; font-size: .86rem; font-weight: 900; padding: .55rem 1rem; text-transform: uppercase; }
.landing-copy h1 { font-size: clamp(2.65rem,5vw,5.2rem); font-style: italic; font-weight: 950; letter-spacing: -.055em; line-height: 1.03; margin: 1.4rem 0 2rem; text-transform: uppercase; }
.landing-copy h1 em { color: #facc15; font-style: inherit; }
.landing-action-cards { display: flex; gap: 1.2rem; }
.landing-action-cards a { background: #151b29; border: 2px solid #7f6500; border-radius: 1rem; box-shadow: 0 0 1.2rem rgba(250,204,21,.32); color: #fff; height: 12rem; overflow: hidden; position: relative; text-decoration: none; width: 12rem; }
.landing-action-cards img { height: 100%; object-fit: cover; opacity: .9; width: 100%; }
.landing-action-cards span { background: linear-gradient(transparent,rgba(0,0,0,.9)); bottom: 0; box-sizing: border-box; font-size: 1rem; font-style: italic; font-weight: 900; left: 0; padding: 2.8rem .5rem .8rem; position: absolute; text-align: center; width: 100%; }
.landing-board { border-radius: 1.2rem; height: 25rem; overflow: hidden; position: relative; }
.landing-board img { height: 100%; object-fit: cover; width: 100%; }
.landing-board::after { background: linear-gradient(transparent,rgba(0,0,0,.35)); content: ''; inset: 0; position: absolute; }
.landing-board a { background: #e5db33; border-radius: .7rem; bottom: 0; color: #111; font-weight: 900; left: 50%; padding: 1rem 1.5rem; position: absolute; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); z-index: 1; }
.landing-about { background: #151b29; border: 1px solid #314259; border-radius: .9rem; display: grid; gap: 2rem; grid-template-columns: 1.5fr .7fr; margin: 2rem auto 0; max-width: 90rem; padding: 2.5rem; }
.landing-spark { color: #facc15; font-size: 1.4rem; }
.landing-about h2 { font-size: 2.2rem; margin: .4rem 0 1.4rem; }
.landing-about p { color: #e5e7eb; line-height: 1.75; }
.landing-about-links { display: grid; gap: .75rem; }
.landing-about-links a { background: rgba(255,255,255,.06); border-radius: .7rem; color: #fff; display: flex; font-weight: 800; justify-content: space-between; padding: 1rem; text-decoration: none; }
.landing-about-links span { color: #facc15; }
.landing-content-hero { max-width: 66rem; padding: clamp(3rem,7vw,6rem) 0 2.5rem; }
.landing-content-hero h1 { font-size: clamp(2.65rem,5vw,5.1rem); letter-spacing: -.055em; line-height: 1.03; margin: 1.2rem 0 1.3rem; max-width: 15ch; text-transform: uppercase; }
.landing-content-hero > p:last-child { color: #cbd5e1; font-size: clamp(1rem,1.5vw,1.25rem); line-height: 1.65; max-width: 52rem; }
.landing-content-note { background: rgba(250,204,21,.08); border-left: 3px solid #facc15; color: #e5e7eb; line-height: 1.6; margin-top: 1.6rem; max-width: 52rem; padding: .9rem 1rem; }
.landing-content-note strong { color: #facc15; }
.landing-article-section { display: grid; gap: 1rem; max-width: 72rem; }
.landing-article-card { background: #151b29; border: 1px solid #314259; border-radius: 1rem; padding: clamp(1.3rem,3vw,2rem); position: relative; }
.landing-card-number { color: #facc15; font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.landing-article-card h2 { color: #fff; font-size: clamp(1.5rem,2.5vw,2.3rem); letter-spacing: -.04em; margin: 0 0 .75rem; }
.landing-article-card p { color: #cbd5e1; line-height: 1.75; margin: 0; }
.landing-cta-strip { align-items: center; background: linear-gradient(120deg,#1e293b,#111827); border: 1px solid #314259; border-radius: 1rem; display:flex; gap:1.5rem; justify-content:space-between; margin-top: 2rem; max-width:72rem; padding:2rem; }
.landing-cta-strip h2 { font-size: 1.65rem; margin: .7rem 0 0; }
.landing-cta-strip > a { background:#facc15; border-radius:.7rem; color:#111; font-weight:900; padding:.85rem 1.2rem; text-decoration:none; text-transform:uppercase; white-space:nowrap; }
.landing-login-layout { align-items: center; display: grid; gap: clamp(2rem,5vw,6rem); grid-template-columns: minmax(20rem,.9fr) minmax(24rem,1.1fr); max-width: 88rem; min-height: calc(100vh - 8rem); }
.landing-login-shell { max-width: 42rem; padding: clamp(3rem,8vw,6rem) 0; }
.landing-login-shell > h1 { font-size: clamp(2.7rem,5vw,4.8rem); letter-spacing: -.055em; line-height: 1.03; margin: 1.15rem 0; text-transform: uppercase; }
.landing-login-shell > .lead { color: #cbd5e1; font-size: 1.12rem; line-height: 1.65; }
.landing-body .login-card { background: #151b29; border-color: #314259; box-shadow: 0 18px 40px rgba(0,0,0,.32); }
.landing-body .login-card label { color: #f8fafc; }
.landing-body .login-card > p { color: #94a3b8; }
.landing-body .phone-field { background: #0f172a; border-color: #475569; }
.landing-body .phone-field span { background: #1e293b; border-color: #475569; color: #facc15; }
.landing-body .phone-field input { color: #f8fafc; }
.landing-body .phone-field input::placeholder { color: #94a3b8; }
.landing-body .primary-action { background: #facc15; color: #111827; }
.landing-login-art { background: transparent; overflow: visible; }
.landing-login-art img { display: block; filter: drop-shadow(0 20px 36px rgba(0,0,0,.45)); height: min(38rem,70vh); mask-image: radial-gradient(ellipse 76% 78% at 50% 50%, #000 57%, rgba(0,0,0,.88) 70%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 76% 78% at 50% 50%, #000 57%, rgba(0,0,0,.88) 70%, transparent 100%); object-fit: cover; width: 100%; }
@media (max-width: 800px) { .landing-sidebar { display:none; } .landing-main { padding: 1.2rem; } .landing-mobile-header { align-items:center; background:#111827; display:flex; justify-content:space-between; padding:.8rem 1rem; } .landing-mobile-header img { height:2.5rem; } .landing-mobile-header a:last-child { background:#facc15; border-radius:.55rem; color:#111; font-size:.78rem; font-weight:900; padding:.55rem .75rem; text-decoration:none; text-transform:uppercase; } .landing-hero { grid-template-columns:1fr; gap:2rem; min-height:0; padding-top:1.5rem; } .landing-copy h1 { font-size:clamp(2.4rem,12vw,4rem); } .landing-action-cards a { height:9.5rem; width:calc(50% - .6rem); } .landing-board { height:17rem; } .landing-about { grid-template-columns:1fr; padding:1.5rem; } .landing-login-layout { grid-template-columns:1fr; min-height:0; } .landing-login-art { display:none; } }

/* Gaming landing/login palette for each admin-selected theme. */
html[data-site-theme="royal-indigo"] .landing-body,
html[data-site-theme="royal-indigo"] .landing-mobile-header { background:#090b20; }
html[data-site-theme="royal-indigo"] .landing-sidebar,
html[data-site-theme="royal-indigo"] .landing-about,
html[data-site-theme="royal-indigo"] .landing-article-card,
html[data-site-theme="royal-indigo"] .landing-body .login-card { background:#171a3d; border-color:#4346a7; }
html[data-site-theme="royal-indigo"] .landing-sidebar nav a.is-active,
html[data-site-theme="royal-indigo"] .landing-copy h1 em,
html[data-site-theme="royal-indigo"] .landing-spark { color:#f5c451; }
html[data-site-theme="royal-indigo"] .landing-play,
html[data-site-theme="royal-indigo"] .landing-body .primary-action,
html[data-site-theme="royal-indigo"] .landing-mobile-header a:last-child { background:#f5c451; }

html[data-site-theme="violet-neon"] .landing-body,
html[data-site-theme="violet-neon"] .landing-mobile-header { background:#15091f; }
html[data-site-theme="violet-neon"] .landing-sidebar,
html[data-site-theme="violet-neon"] .landing-about,
html[data-site-theme="violet-neon"] .landing-article-card,
html[data-site-theme="violet-neon"] .landing-body .login-card { background:#2b103d; border-color:#8c32ab; }
html[data-site-theme="violet-neon"] .landing-sidebar nav a.is-active,
html[data-site-theme="violet-neon"] .landing-copy h1 em,
html[data-site-theme="violet-neon"] .landing-spark { color:#37d4e8; }
html[data-site-theme="violet-neon"] .landing-play,
html[data-site-theme="violet-neon"] .landing-body .primary-action,
html[data-site-theme="violet-neon"] .landing-mobile-header a:last-child { background:#37d4e8; }

html[data-site-theme="crimson-ember"] .landing-body,
html[data-site-theme="crimson-ember"] .landing-mobile-header { background:#21090d; }
html[data-site-theme="crimson-ember"] .landing-sidebar,
html[data-site-theme="crimson-ember"] .landing-about,
html[data-site-theme="crimson-ember"] .landing-article-card,
html[data-site-theme="crimson-ember"] .landing-body .login-card { background:#39131a; border-color:#9f3645; }
html[data-site-theme="crimson-ember"] .landing-sidebar nav a.is-active,
html[data-site-theme="crimson-ember"] .landing-copy h1 em,
html[data-site-theme="crimson-ember"] .landing-spark { color:#fbbf24; }
html[data-site-theme="crimson-ember"] .landing-play,
html[data-site-theme="crimson-ember"] .landing-body .primary-action,
html[data-site-theme="crimson-ember"] .landing-mobile-header a:last-child { background:#fbbf24; }

html[data-site-theme="ocean-cyan"] .landing-body,
html[data-site-theme="ocean-cyan"] .landing-mobile-header { background:#061d28; }
html[data-site-theme="ocean-cyan"] .landing-sidebar,
html[data-site-theme="ocean-cyan"] .landing-about,
html[data-site-theme="ocean-cyan"] .landing-article-card,
html[data-site-theme="ocean-cyan"] .landing-body .login-card { background:#0b3443; border-color:#19738a; }
html[data-site-theme="ocean-cyan"] .landing-sidebar nav a.is-active,
html[data-site-theme="ocean-cyan"] .landing-copy h1 em,
html[data-site-theme="ocean-cyan"] .landing-spark { color:#5eead4; }
html[data-site-theme="ocean-cyan"] .landing-play,
html[data-site-theme="ocean-cyan"] .landing-body .primary-action,
html[data-site-theme="ocean-cyan"] .landing-mobile-header a:last-child { background:#5eead4; }

/* Layout packs: shared content, visibly different desktop compositions. */
@media (min-width: 801px) {
    /* Royal Indigo: premium top navigation, with the game board leading. */
    html[data-site-theme="royal-indigo"] .landing-sidebar { align-items:center; border-radius:0 0 1.5rem 1.5rem; flex-direction:row; height:5.4rem; left:2.2rem; padding:0 1.5rem; right:2.2rem; top:1.2rem; width:auto; }
    html[data-site-theme="royal-indigo"] .landing-sidebar nav { display:flex; gap:1.65rem; margin:0 auto; }
    html[data-site-theme="royal-indigo"] .landing-mark img { height:3rem; width:3rem; }
    html[data-site-theme="royal-indigo"] .landing-play { margin:0; padding:.72rem 1.2rem; }
    html[data-site-theme="royal-indigo"] .landing-main { padding:8.5rem 7vw 4rem; }
    html[data-site-theme="royal-indigo"] .landing-hero { gap:5rem; grid-template-columns:minmax(19rem,.9fr) minmax(0,1.1fr); }
    html[data-site-theme="royal-indigo"] .landing-board { box-shadow:0 1.5rem 4rem rgba(79,70,229,.3); order:-1; transform:rotate(-1.2deg); }
    html[data-site-theme="royal-indigo"] .landing-copy h1 { max-width:10ch; }
    html[data-site-theme="royal-indigo"] .landing-about { border-radius:1.6rem; }

    /* Violet Neon: vertical arcade rail and staggered gaming cards. */
    html[data-site-theme="violet-neon"] .landing-sidebar { border-radius:0 2.4rem 2.4rem 0; box-shadow:1rem 0 3rem rgba(217,70,239,.14); width:17.25rem; }
    html[data-site-theme="violet-neon"] .landing-main { padding-left:23rem; }
    html[data-site-theme="violet-neon"] .landing-hero { align-items:start; grid-template-columns:1.18fr .82fr; padding-top:3rem; }
    html[data-site-theme="violet-neon"] .landing-board { border:1px solid #b026d9; box-shadow:0 0 2.2rem rgba(217,70,239,.28); height:29rem; margin-top:4rem; }
    html[data-site-theme="violet-neon"] .landing-action-cards { margin-left:2rem; }
    html[data-site-theme="violet-neon"] .landing-action-cards a:first-child { transform:translateY(1.3rem) rotate(-2deg); }
    html[data-site-theme="violet-neon"] .landing-action-cards a:last-child { transform:translateY(-.8rem) rotate(2deg); }
    html[data-site-theme="violet-neon"] .landing-about { border-radius:2rem 2rem .7rem 2rem; }

    /* Crimson Ember: right-side rail and reversed challenge composition. */
    html[data-site-theme="crimson-ember"] .landing-sidebar { border-radius:2.2rem 0 0 2.2rem; left:auto; right:0; width:16.8rem; }
    html[data-site-theme="crimson-ember"] .landing-main { padding:4rem 21rem 4rem 4rem; }
    html[data-site-theme="crimson-ember"] .landing-hero { grid-template-columns:minmax(17rem,.85fr) minmax(0,1.15fr); }
    html[data-site-theme="crimson-ember"] .landing-board { border-radius:2.5rem .6rem 2.5rem .6rem; box-shadow:-1.5rem 1.5rem 0 rgba(220,63,77,.14); order:-1; }
    html[data-site-theme="crimson-ember"] .landing-action-cards a { border-radius:1.4rem .45rem 1.4rem .45rem; }
    html[data-site-theme="crimson-ember"] .landing-about { border-left:4px solid #f59e0b; border-radius:.65rem 2rem .65rem 2rem; }

    /* Ocean Cyan: floating glass navigation and an airy centred design. */
    html[data-site-theme="ocean-cyan"] .landing-sidebar { align-items:center; backdrop-filter:blur(16px); background:rgba(11,52,67,.88); border-radius:999px; flex-direction:row; height:4.6rem; left:8vw; padding:0 .9rem 0 1.25rem; right:8vw; top:1.5rem; width:auto; }
    html[data-site-theme="ocean-cyan"] .landing-sidebar nav { display:flex; gap:1.35rem; margin:0 auto; }
    html[data-site-theme="ocean-cyan"] .landing-play { margin:0; }
    html[data-site-theme="ocean-cyan"] .landing-main { padding:8rem 7vw 4rem; }
    html[data-site-theme="ocean-cyan"] .landing-hero { gap:6rem; grid-template-columns:1fr 1fr; max-width:78rem; }
    html[data-site-theme="ocean-cyan"] .landing-board { border:1px solid rgba(94,234,212,.75); border-radius:50% 50% 1.5rem 1.5rem; height:26rem; }
    html[data-site-theme="ocean-cyan"] .landing-action-cards a { border-radius:50% 50% 1rem 1rem; height:13rem; width:10.5rem; }
    html[data-site-theme="ocean-cyan"] .landing-about { border-radius:2.4rem; max-width:76rem; }
}

@media (max-width: 800px) {
    html[data-site-theme="royal-indigo"] .landing-mobile-header { border-bottom:1px solid #4346a7; }
    html[data-site-theme="violet-neon"] .landing-mobile-header { border-bottom:2px solid #8c32ab; }
    html[data-site-theme="crimson-ember"] .landing-mobile-header { border-bottom:2px solid #9f3645; }
    html[data-site-theme="ocean-cyan"] .landing-mobile-header { border-bottom:1px solid #19738a; }
    html[data-site-theme="violet-neon"] .landing-action-cards a { border-radius:1.4rem .5rem 1.4rem .5rem; }
    html[data-site-theme="crimson-ember"] .landing-action-cards a { border-radius:1.25rem .45rem 1.25rem .45rem; }
    html[data-site-theme="ocean-cyan"] .landing-action-cards a { border-radius:1.5rem 1.5rem .7rem .7rem; }
}

/* Mobile is the primary player surface. These packs intentionally change
   composition, not merely the palette. */
@media (max-width: 800px) {
    /* Royal Indigo - app-like board-first lobby. */
    html[data-site-theme="royal-indigo"] .landing-main { padding:0 1rem 2.5rem; }
    html[data-site-theme="royal-indigo"] .landing-mobile-header { background:linear-gradient(90deg,#11143d,#272a67); min-height:4.6rem; padding:.7rem 1rem; }
    html[data-site-theme="royal-indigo"] .landing-mobile-header img { height:3rem; }
    html[data-site-theme="royal-indigo"] .landing-hero { display:flex; flex-direction:column; gap:1.5rem; padding-top:1rem; }
    html[data-site-theme="royal-indigo"] .landing-board { border:2px solid #f5c451; border-radius:1.5rem; box-shadow:0 1rem 2.5rem rgba(79,70,229,.42); height:14.5rem; order:-1; transform:none; width:100%; }
    html[data-site-theme="royal-indigo"] .landing-copy { display:contents; }
    html[data-site-theme="royal-indigo"] .landing-eyebrow { order:-2; margin:0 auto; }
    html[data-site-theme="royal-indigo"] .landing-copy h1 { font-size:clamp(2rem,10vw,3.1rem); order:0; text-align:center; }
    html[data-site-theme="royal-indigo"] .landing-action-cards { gap:.75rem; order:1; }
    html[data-site-theme="royal-indigo"] .landing-action-cards a { border-radius:.8rem; height:7.2rem; }
    html[data-site-theme="royal-indigo"] .landing-about { border-radius:1.3rem; margin-top:1.5rem; }
    html[data-site-theme="royal-indigo"] .landing-login-layout { display:flex; flex-direction:column-reverse; gap:1rem; padding-top:1rem; }
    html[data-site-theme="royal-indigo"] .landing-login-art { display:block; height:10rem; width:100%; }
    html[data-site-theme="royal-indigo"] .landing-login-art img { height:10rem; object-position:center 58%; }

    /* Violet Neon - stacked e-sports poster with floating action tiles. */
    html[data-site-theme="violet-neon"] .landing-main { padding:0 1.1rem 3rem; }
    html[data-site-theme="violet-neon"] .landing-mobile-header { background:#210d32; justify-content:center; min-height:4.8rem; position:relative; }
    html[data-site-theme="violet-neon"] .landing-mobile-header a:last-child { position:absolute; right:.8rem; }
    html[data-site-theme="violet-neon"] .landing-hero { display:flex; flex-direction:column; gap:0; padding-top:1.7rem; }
    html[data-site-theme="violet-neon"] .landing-copy { display:contents; }
    html[data-site-theme="violet-neon"] .landing-eyebrow { margin:0 auto; order:0; }
    html[data-site-theme="violet-neon"] .landing-copy h1 { font-size:clamp(2.45rem,13vw,4rem); line-height:.96; margin:1rem 0 -1.4rem; order:1; position:relative; text-align:center; z-index:2; }
    html[data-site-theme="violet-neon"] .landing-board { border-radius:2rem; box-shadow:0 0 2.5rem rgba(217,70,239,.42); height:18rem; margin:0; order:2; }
    html[data-site-theme="violet-neon"] .landing-action-cards { gap:.75rem; margin:-1rem .55rem 0; order:3; position:relative; z-index:3; }
    html[data-site-theme="violet-neon"] .landing-action-cards a { border:2px solid #d946ef; height:8rem; width:calc(50% - .38rem); }
    html[data-site-theme="violet-neon"] .landing-about { border:1px solid #a855f7; margin-top:2.2rem; }
    html[data-site-theme="violet-neon"] .landing-login-layout { display:block; padding-top:1.25rem; }
    html[data-site-theme="violet-neon"] .landing-login-art { display:block; height:12rem; margin:0 -1.1rem 1.25rem; width:calc(100% + 2.2rem); }
    html[data-site-theme="violet-neon"] .landing-login-art img { height:12rem; mask-image:linear-gradient(90deg,transparent,#000 15%,#000 85%,transparent); -webkit-mask-image:linear-gradient(90deg,transparent,#000 15%,#000 85%,transparent); }

    /* Crimson Ember - compact challenge cards with strong split sections. */
    html[data-site-theme="crimson-ember"] .landing-main { padding:0 1rem 2.5rem; }
    html[data-site-theme="crimson-ember"] .landing-mobile-header { background:linear-gradient(135deg,#52151d,#21090d); min-height:4.75rem; }
    html[data-site-theme="crimson-ember"] .landing-hero { display:flex; flex-direction:column; gap:1.1rem; padding-top:1.1rem; }
    html[data-site-theme="crimson-ember"] .landing-copy { display:contents; }
    html[data-site-theme="crimson-ember"] .landing-eyebrow { border-left:4px solid #f59e0b; border-radius:.3rem; order:0; }
    html[data-site-theme="crimson-ember"] .landing-copy h1 { font-size:clamp(2.2rem,12vw,3.6rem); order:1; }
    html[data-site-theme="crimson-ember"] .landing-action-cards { order:2; }
    html[data-site-theme="crimson-ember"] .landing-action-cards a { border-width:1px; box-shadow:none; height:8.2rem; }
    html[data-site-theme="crimson-ember"] .landing-board { border-radius:1.8rem .45rem 1.8rem .45rem; height:13.25rem; order:3; }
    html[data-site-theme="crimson-ember"] .landing-board a { border-radius:.25rem; bottom:1rem; }
    html[data-site-theme="crimson-ember"] .landing-about { border-left:4px solid #f59e0b; border-radius:.5rem 1.6rem .5rem 1.6rem; }
    html[data-site-theme="crimson-ember"] .landing-login-layout { display:flex; flex-direction:column; gap:.25rem; padding-top:1.1rem; }
    html[data-site-theme="crimson-ember"] .landing-login-art { display:block; height:9rem; order:-1; width:100%; }
    html[data-site-theme="crimson-ember"] .landing-login-art img { height:9rem; object-position:center 62%; }

    /* Ocean Cyan - soft card carousel style with a wide image hero. */
    html[data-site-theme="ocean-cyan"] .landing-main { padding:0 .85rem 3rem; }
    html[data-site-theme="ocean-cyan"] .landing-mobile-header { background:rgba(6,29,40,.97); min-height:4.75rem; }
    html[data-site-theme="ocean-cyan"] .landing-hero { display:flex; flex-direction:column; gap:1rem; padding-top:1rem; }
    html[data-site-theme="ocean-cyan"] .landing-copy { display:contents; }
    html[data-site-theme="ocean-cyan"] .landing-board { border-radius:2rem 2rem .65rem .65rem; height:17rem; order:-1; }
    html[data-site-theme="ocean-cyan"] .landing-eyebrow { margin:0 auto; order:0; }
    html[data-site-theme="ocean-cyan"] .landing-copy h1 { font-size:clamp(2.15rem,11vw,3.3rem); order:1; text-align:center; }
    html[data-site-theme="ocean-cyan"] .landing-action-cards { gap:.7rem; order:2; }
    html[data-site-theme="ocean-cyan"] .landing-action-cards a { height:8rem; }
    html[data-site-theme="ocean-cyan"] .landing-about { background:#0b3443; border-radius:1.6rem; margin-top:1.75rem; }
    html[data-site-theme="ocean-cyan"] .landing-login-layout { display:flex; flex-direction:column-reverse; gap:.75rem; padding-top:.75rem; }
    html[data-site-theme="ocean-cyan"] .landing-login-art { display:block; height:11rem; width:100%; }
    html[data-site-theme="ocean-cyan"] .landing-login-art img { height:11rem; object-position:center 58%; }
}

/* ============= ADMIN DESIGN-THEME HOME ============= */
.theme-home { margin:0 auto; max-width:82rem; padding:clamp(2rem,5vw,5rem) 0 4rem; }
.theme-home-hero { align-items:center; display:grid; gap:clamp(2rem,6vw,7rem); grid-template-columns:minmax(0,1fr) minmax(20rem,.9fr); min-height:32rem; }
.theme-home-kicker,.theme-story-title span,.theme-faq-heading > p { font-size:.72rem; font-weight:900; letter-spacing:.16em; margin:0; text-transform:uppercase; }
.theme-home-copy h1 { font-size:clamp(3rem,6vw,6.4rem); letter-spacing:-.075em; line-height:.9; margin:.85rem 0 1.4rem; max-width:9ch; text-transform:uppercase; }
.theme-home-copy h1 em { font-style:normal; }
.theme-home-lead { color:#cbd5e1; font-size:1.05rem; line-height:1.75; max-width:36rem; }
.theme-home-actions { display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }
.theme-home-actions a { border:1px solid #475569; border-radius:.7rem; color:#fff; font-size:.9rem; font-weight:900; padding:.85rem 1.1rem; text-decoration:none; }
.theme-home-actions a:first-child { background:#fff; color:#101827; }
.theme-home-stats { display:flex; gap:1.35rem; margin-top:2rem; }
.theme-home-stats div { border-left:2px solid #64748b; padding-left:.75rem; }
.theme-home-stats strong { display:block; font-size:1.1rem; }
.theme-home-stats span { color:#94a3b8; font-size:.72rem; font-weight:700; }
.theme-home-board { isolation:isolate; min-height:27rem; position:relative; }
.theme-home-board img { border-radius:2rem; box-shadow:0 2rem 5rem rgba(0,0,0,.45); height:100%; inset:0; object-fit:cover; position:absolute; width:100%; z-index:-1; }
.theme-home-board::after { background:linear-gradient(135deg,rgba(2,6,23,.12),rgba(2,6,23,.55)); border-radius:inherit; content:""; inset:0; position:absolute; z-index:-1; }
.theme-board-orbit { border:1px solid rgba(255,255,255,.3); border-radius:50%; position:absolute; }
.orbit-one { height:72%; right:-7%; top:-12%; width:72%; }.orbit-two { bottom:-11%; height:54%; left:-9%; width:54%; }
.theme-board-label { background:rgba(2,6,23,.76); border:1px solid rgba(255,255,255,.32); border-radius:99px; bottom:1.1rem; font-size:.72rem; font-weight:900; left:1.1rem; letter-spacing:.1em; padding:.65rem .8rem; position:absolute; text-transform:uppercase; }
.theme-home-quick { display:grid; gap:1rem; grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:3rem; }
.theme-quick-card { background:#131b2d; border:1px solid #334155; border-radius:1.25rem; color:#fff; display:grid; min-height:13rem; overflow:hidden; padding:1.2rem; position:relative; text-decoration:none; }
.theme-quick-card img { height:100%; inset:0; object-fit:cover; opacity:.5; position:absolute; transition:transform .35s ease; width:100%; }.theme-quick-card:hover img { transform:scale(1.06); }
.theme-quick-card::after { background:linear-gradient(90deg,rgba(5,9,18,.88),rgba(5,9,18,.12)); content:""; inset:0; position:absolute; }.theme-quick-card > * { position:relative; z-index:1; }
.theme-quick-index { color:#facc15; font-size:.74rem; font-weight:900; letter-spacing:.1em; }.theme-quick-card strong { align-self:end; font-size:1.7rem; max-width:12ch; }.theme-quick-card small { color:#e2e8f0; font-size:.78rem; font-weight:800; margin-top:.25rem; }.theme-quick-card b { color:#facc15; font-size:1rem; }
.theme-home-story { border-bottom:1px solid #334155; border-top:1px solid #334155; display:grid; gap:2rem; grid-template-columns:1fr 1fr; margin-top:3rem; padding:3rem 0; }.theme-story-title h2,.theme-faq-heading h2 { font-size:clamp(1.8rem,3vw,3.2rem); letter-spacing:-.055em; line-height:1; margin:.7rem 0 0; }.theme-story-copy { color:#cbd5e1; line-height:1.75; max-width:35rem; }.theme-story-copy a { color:#fff; display:inline-block; font-weight:900; margin-top:.8rem; text-decoration:none; }
.theme-home-faq { margin-top:3rem; }.theme-faq-heading { display:flex; justify-content:space-between; align-items:end; gap:1rem; }.theme-faq-grid { display:grid; gap:1rem; grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:1.5rem; }.theme-faq-grid article { background:#121a2b; border:1px solid #334155; border-radius:1rem; padding:1.3rem; }.theme-faq-grid article > span { color:#facc15; font-size:.75rem; font-weight:900; }.theme-faq-grid h3 { font-size:1.05rem; margin:.75rem 0 .5rem; }.theme-faq-grid p { color:#cbd5e1; font-size:.88rem; line-height:1.65; margin:0; }

/* The footer is an intentional game-terminal, not a plain website footer. */
.landing-body .site-footer { border-top:1px solid #334155; margin-top:0; padding:3rem max(1.25rem,calc((100vw - 82rem)/2)); position:relative; }.landing-body .site-footer::before { color:#ffffff0d; content:"LK / PLAY RESPONSIBLY"; font-size:clamp(2rem,7vw,7rem); font-weight:950; left:0; letter-spacing:-.08em; overflow:hidden; pointer-events:none; position:absolute; top:1rem; white-space:nowrap; width:100%; }.landing-body .site-footer > * { position:relative; }

/* Each option gets a different complete visual language. */
html[data-site-theme="royal-indigo"] .theme-home { max-width:76rem; } html[data-site-theme="royal-indigo"] .theme-home-board { border-radius:50% 50% 1.6rem 1.6rem; transform:rotate(2deg); } html[data-site-theme="royal-indigo"] .theme-home-copy h1 em,html[data-site-theme="royal-indigo"] .theme-home-kicker { color:#f5c451; } html[data-site-theme="royal-indigo"] .theme-home-actions a:first-child { background:#f5c451; } html[data-site-theme="royal-indigo"] .theme-quick-card { border-radius:.4rem 1.7rem .4rem 1.7rem; } html[data-site-theme="royal-indigo"] .theme-home-story { border-color:#5555b5; }
html[data-site-theme="violet-neon"] .theme-home { max-width:72rem; } html[data-site-theme="violet-neon"] .theme-home-hero { grid-template-columns:1.1fr .9fr; } html[data-site-theme="violet-neon"] .theme-home-board { border:1px solid #d946ef; border-radius:2.5rem; box-shadow:0 0 3rem rgba(217,70,239,.34); } html[data-site-theme="violet-neon"] .theme-home-copy h1 em,html[data-site-theme="violet-neon"] .theme-home-kicker { color:#37d4e8; } html[data-site-theme="violet-neon"] .theme-home-actions a:first-child { background:#37d4e8; } html[data-site-theme="violet-neon"] .theme-quick-card { border-color:#a855f7; border-radius:1.7rem .45rem 1.7rem .45rem; } html[data-site-theme="violet-neon"] .theme-home-story { border-color:#a855f7; }
html[data-site-theme="crimson-ember"] .theme-home { max-width:88rem; } html[data-site-theme="crimson-ember"] .theme-home-hero { grid-template-columns:.86fr 1.14fr; } html[data-site-theme="crimson-ember"] .theme-home-board { border:2px solid #f59e0b; border-radius:2.6rem .5rem 2.6rem .5rem; min-height:30rem; } html[data-site-theme="crimson-ember"] .theme-home-copy h1 em,html[data-site-theme="crimson-ember"] .theme-home-kicker { color:#fbbf24; } html[data-site-theme="crimson-ember"] .theme-home-actions a:first-child { background:#fbbf24; } html[data-site-theme="crimson-ember"] .theme-home-quick { grid-template-columns:1.1fr .9fr; } html[data-site-theme="crimson-ember"] .theme-quick-card { border-color:#be4654; border-radius:.45rem 1.8rem .45rem 1.8rem; } html[data-site-theme="crimson-ember"] .theme-home-story { border-color:#9f3645; } html[data-site-theme="crimson-ember"] .landing-body .site-footer { background:linear-gradient(125deg,#2a0b10,#5d1925); }
html[data-site-theme="ocean-cyan"] .theme-home { max-width:78rem; } html[data-site-theme="ocean-cyan"] .theme-home-board { border:1px solid #5eead4; border-radius:50% 50% 1rem 1rem; } html[data-site-theme="ocean-cyan"] .theme-home-copy h1 em,html[data-site-theme="ocean-cyan"] .theme-home-kicker { color:#5eead4; } html[data-site-theme="ocean-cyan"] .theme-home-actions a:first-child { background:#5eead4; } html[data-site-theme="ocean-cyan"] .theme-quick-card { border-color:#19738a; border-radius:1.5rem; } html[data-site-theme="ocean-cyan"] .theme-home-story { border-color:#19738a; } html[data-site-theme="ocean-cyan"] .landing-body .site-footer { background:linear-gradient(125deg,#052b39,#0b5962); }

@media (max-width:800px) { .theme-home { padding:1.25rem 0 2rem; }.theme-home-hero { display:flex; flex-direction:column; gap:1.4rem; min-height:0; }.theme-home-copy { width:100%; }.theme-home-copy h1 { font-size:clamp(2.75rem,15vw,4.4rem); }.theme-home-lead { font-size:.96rem; }.theme-home-board { height:15.5rem; min-height:0; order:-1; width:100%; }.theme-home-stats { gap:.8rem; justify-content:space-between; }.theme-home-stats div { flex:1; }.theme-home-quick,.theme-home-faq .theme-faq-grid { gap:.75rem; }.theme-quick-card { min-height:10rem; padding:.85rem; }.theme-quick-card strong { font-size:1.1rem; }.theme-home-story { display:block; margin-top:2rem; padding:2rem 0; }.theme-story-copy { margin-top:1.2rem; }.theme-faq-heading { align-items:start; display:block; }.theme-home-faq { margin-top:2rem; }.theme-faq-grid article { padding:1rem; }.theme-faq-grid h3 { font-size:.92rem; }.theme-faq-grid p { font-size:.78rem; }.landing-body .site-footer { padding:2.5rem 1.1rem max(1.5rem,env(safe-area-inset-bottom)); }.landing-body .site-footer::before { font-size:3.1rem; top:.7rem; }
html[data-site-theme="royal-indigo"] .theme-home-board { height:17rem; } html[data-site-theme="violet-neon"] .theme-home-board { height:19rem; transform:rotate(-1deg); } html[data-site-theme="crimson-ember"] .theme-home-hero { flex-direction:column-reverse; } html[data-site-theme="crimson-ember"] .theme-home-board { height:14rem; min-height:0; } html[data-site-theme="crimson-ember"] .theme-home-copy h1 { font-size:clamp(3rem,16vw,4.75rem); } html[data-site-theme="crimson-ember"] .theme-home-quick { grid-template-columns:1fr; } html[data-site-theme="crimson-ember"] .theme-quick-card { min-height:9rem; } html[data-site-theme="ocean-cyan"] .theme-home-board { height:18rem; }
}

/* New login composition shared by every design pack. */
.theme-login-frame { align-items:stretch; display:grid; grid-template-columns:1fr 1fr; margin:clamp(2rem,5vw,5rem) auto; max-width:76rem; min-height:38rem; overflow:hidden; }
.theme-login-poster { background:#141b2d; min-height:38rem; overflow:hidden; position:relative; }.theme-login-poster img { height:100%; object-fit:cover; opacity:.72; position:absolute; width:100%; }.theme-login-poster::after { background:linear-gradient(20deg,rgba(3,7,18,.94),rgba(3,7,18,.08)); content:""; inset:0; position:absolute; }.theme-login-poster-copy { bottom:2.3rem; left:2.3rem; position:absolute; z-index:1; }.theme-login-poster-copy span { color:#facc15; display:block; font-size:.72rem; font-weight:900; letter-spacing:.13em; }.theme-login-poster-copy strong { display:block; font-size:clamp(2rem,4vw,4.1rem); letter-spacing:-.06em; line-height:.9; margin-top:.8rem; text-transform:uppercase; }
.theme-login-panel { background:#0c1220; padding:clamp(2rem,6vw,5rem); }.theme-login-kicker { color:#facc15; font-size:.72rem; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }.theme-login-panel h1 { font-size:clamp(2.5rem,5vw,5rem); letter-spacing:-.07em; line-height:.9; margin:.8rem 0 1rem; text-transform:uppercase; }.theme-login-panel h1 em { color:#facc15; font-style:normal; }.theme-login-lead { color:#cbd5e1; line-height:1.7; }.theme-login-card { margin-top:2rem; }.theme-login-footnote { color:#64748b; font-size:.72rem; font-weight:700; margin-top:1.2rem; }
html[data-site-theme="crimson-ember"] .theme-login-frame { border:1px solid #9f3645; border-radius:.5rem 3rem .5rem 3rem; } html[data-site-theme="crimson-ember"] .theme-login-poster { background:#4a1520; } html[data-site-theme="crimson-ember"] .theme-login-panel { background:#21090d; } html[data-site-theme="crimson-ember"] .theme-login-kicker,html[data-site-theme="crimson-ember"] .theme-login-panel h1 em,html[data-site-theme="crimson-ember"] .theme-login-poster-copy span { color:#fbbf24; }
html[data-site-theme="violet-neon"] .theme-login-frame { border:1px solid #a855f7; border-radius:2rem; box-shadow:0 0 3rem rgba(217,70,239,.2); } html[data-site-theme="violet-neon"] .theme-login-panel { background:#1c0c29; } html[data-site-theme="violet-neon"] .theme-login-kicker,html[data-site-theme="violet-neon"] .theme-login-panel h1 em,html[data-site-theme="violet-neon"] .theme-login-poster-copy span { color:#37d4e8; }
html[data-site-theme="ocean-cyan"] .theme-login-frame { border:1px solid #19738a; border-radius:2.5rem; } html[data-site-theme="ocean-cyan"] .theme-login-panel { background:#062833; } html[data-site-theme="ocean-cyan"] .theme-login-kicker,html[data-site-theme="ocean-cyan"] .theme-login-panel h1 em,html[data-site-theme="ocean-cyan"] .theme-login-poster-copy span { color:#5eead4; }
@media(max-width:800px) { .theme-login-frame { display:flex; flex-direction:column; margin:0 -1.2rem; min-height:0; }.theme-login-poster { min-height:13rem; }.theme-login-poster-copy { bottom:1.25rem; left:1.25rem; }.theme-login-poster-copy strong { font-size:2rem; }.theme-login-panel { padding:2rem 1.25rem 3rem; }.theme-login-panel h1 { font-size:clamp(2.65rem,15vw,4.25rem); }.theme-login-card { margin-top:1.5rem; } }
