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

:root {
    --demo-bg: #140f11;
    --demo-panel: rgba(255, 248, 241, 0.94);
    --demo-panel-strong: rgba(255, 252, 248, 0.98);
    --demo-text: #1f2937;
    --demo-muted: #685b55;
    --demo-border: rgba(64, 46, 38, 0.58);
    --demo-shadow: 0 24px 60px rgba(16, 10, 8, 0.32);
    --demo-good: #0f9f6e;
    --demo-ok: #d97706;
    --demo-bad: #dc2626;
    --demo-accent: #ff7b54;
    --demo-accent-soft: rgba(255, 123, 84, 0.14);
    --demo-guide-glow: rgba(255, 123, 84, 0.34);
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: radial-gradient(circle at top, #2b1817 0%, var(--demo-bg) 48%, #080607 100%);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--demo-text);
}

body.intro-open {
    overflow: hidden;
}

body.dialog-open #demo-vignette {
    background: linear-gradient(180deg, rgba(7, 6, 10, 0.08) 0%, rgba(7, 6, 10, 0.16) 34%, rgba(7, 6, 10, 0.62) 100%);
}

#viewport {
    display: block;
    width: 100vw;
    height: 100vh;
    filter: saturate(1.08) contrast(1.03);
}

#demo-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 203, 128, 0.26), transparent 38%),
        linear-gradient(180deg, rgba(9, 8, 13, 0.10) 0%, rgba(9, 8, 13, 0.02) 30%, rgba(9, 8, 13, 0.34) 100%);
    z-index: 2;
    transition: background 180ms ease;
}

.demo-kicker,
#demo-complete-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(25, 18, 15, 0.08);
    color: #5c4136;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#demo-continue,
#demo-restart {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

#demo-hud {
    position: fixed;
    top: env(safe-area-inset-top, 12px);
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 12;
    pointer-events: none;
}

#demo-brand,
#demo-scoreboard,
#demo-progress {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(9, 8, 12, 0.18);
}

#demo-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 18px;
    background: rgba(20, 15, 17, 0.64);
    color: #fff8f3;
    min-width: 148px;
}

.demo-brand-mark {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 216, 197, 0.76);
}

.demo-brand-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

#demo-legal-footer {
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 218, 194, 0.16);
    border-radius: 999px;
    background: rgba(15, 10, 12, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    z-index: 10;
}

#demo-legal-footer a {
    color: rgba(255, 244, 236, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
}

#demo-legal-footer a:hover,
#demo-legal-footer a:focus-visible {
    color: #ffffff;
}

#demo-legal-footer a:focus-visible {
    outline: 2px solid rgba(255, 146, 94, 0.9);
    outline-offset: 3px;
}

.demo-intro-legal {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
}

.demo-intro-legal a {
    color: #6d5850;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.demo-intro-legal a:hover,
.demo-intro-legal a:focus-visible {
    color: #1b130f;
}

.demo-intro-legal a:focus-visible {
    outline: 2px solid rgba(255, 146, 94, 0.9);
    outline-offset: 3px;
}

body.intro-open #demo-legal-footer,
body.dialog-open #demo-legal-footer {
    opacity: 0;
    pointer-events: none;
}

#demo-score-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(9, 7, 12, 0.55);
}

#demo-score-modal.visible {
    display: flex;
    animation: demo-score-modal-in 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#demo-score-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 36px 48px;
    border-radius: 28px;
    background: rgba(255, 249, 243, 0.97);
    box-shadow: 0 32px 80px rgba(9, 7, 12, 0.38), 0 0 0 1px rgba(255, 210, 140, 0.3);
}

#demo-score-modal-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a6a15;
}

#demo-score-modal-value {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #1a1208;
}

#demo-score-modal-reason {
    max-width: 260px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: #6f4e17;
}

@keyframes demo-score-modal-in {
    0%   { opacity: 0; transform: scale(0.82); }
    18%  { opacity: 1; transform: scale(1); }
    72%  { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.06); }
}

#demo-intro {
    position: fixed;
    inset: 0;
    z-index: 24;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 18px calc(env(safe-area-inset-bottom, 0px) + 24px);
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 170, 115, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(8, 6, 10, 0.36) 0%, rgba(8, 6, 10, 0.66) 100%);
}

#demo-intro.hidden {
    display: none;
}

#demo-intro-card {
    width: min(100%, 540px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(255, 214, 186, 0.28);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 249, 243, 0.96) 0%, rgba(255, 244, 235, 0.93) 100%);
    box-shadow: 0 36px 80px rgba(6, 5, 8, 0.42);
}

#demo-intro-headline {
    font-size: clamp(34px, 7vw, 56px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: #1b130f;
}

#demo-intro-body,
#demo-intro-body2 {
    font-size: 15px;
    line-height: 1.55;
    color: #5c4841;
}

#demo-intro-tiktok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    border-radius: 18px;
    background: rgba(18, 12, 15, 0.94);
    color: #fff6f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

#demo-intro-tiktok.connected {
    background: linear-gradient(135deg, #10261f 0%, #1a4639 100%);
}

#demo-intro-tiktok-status {
    margin-top: -4px;
    font-size: 13px;
    line-height: 1.45;
    color: #5c4841;
    text-align: center;
}

#demo-intro-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    padding: 14px 18px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff925e 0%, #ff6a3d 100%);
    color: #fff9f3;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(255, 106, 61, 0.32);
    -webkit-tap-highlight-color: transparent;
}

#demo-intro-start:active {
    transform: translateY(1px);
}

#demo-scoreboard.lit {
    background: rgba(255, 249, 220, 0.97);
    box-shadow:
        0 16px 40px rgba(9, 8, 12, 0.22),
        0 0 0 2px rgba(255, 209, 130, 0.6);
    transition: background 400ms ease, box-shadow 400ms ease;
}

#demo-scoreboard.lit #demo-score-value {
    color: #92500a;
    font-size: 20px;
    transition: color 400ms ease, font-size 400ms ease;
}

#demo-scoreboard {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 18px;
    background: rgba(255, 249, 243, 0.9);
    color: #1d1716;
    text-align: left;
    position: relative;
    overflow: hidden;
    transform-origin: 100% 50%;
    white-space: nowrap;
}

#demo-scoreboard::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at 75% 45%, rgba(255, 214, 150, 0.72) 0%, rgba(255, 214, 150, 0.14) 38%, rgba(255, 214, 150, 0) 72%);
    opacity: 0;
    transform: scale(0.72);
    pointer-events: none;
}

#demo-scoreboard::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    width: 42%;
    right: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 250, 240, 0.76) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: skewX(-18deg);
    pointer-events: none;
}

#demo-score-caption {
    display: block;
    font-size: 7px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7d665d;
    transition: color 180ms ease, text-shadow 180ms ease;
}

#demo-scoreboard.bump #demo-score-caption {
    color: #9a6a15;
    text-shadow: 0 0 12px rgba(255, 211, 140, 0.7);
    animation: demo-score-caption-bump 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

#demo-score-value {
    display: block;
    margin-top: 0;
    font-size: 16px;
    line-height: 1;
    transform-origin: 50% 50%;
}

#demo-scoreboard.bump {
    animation: demo-scoreboard-bump 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
    box-shadow:
        0 16px 40px rgba(9, 8, 12, 0.22),
        0 0 0 2px rgba(255, 209, 130, 0.34);
}

#demo-scoreboard.bump::before {
    animation: demo-scoreboard-glow 460ms cubic-bezier(0.18, 0.9, 0.22, 1);
}

#demo-scoreboard.bump::after {
    animation: demo-scoreboard-sheen 460ms cubic-bezier(0.18, 0.9, 0.22, 1);
}

#demo-score-value.bump {
    animation: demo-score-bump 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes demo-scoreboard-bump {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.08) translateY(-2px);
    }
    68% {
        transform: scale(0.97);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes demo-score-caption-bump {
    0% {
        transform: translateY(0);
    }
    35% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes demo-score-bump {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.28) translateY(-1px);
    }
    65% {
        transform: scale(0.94);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes demo-scoreboard-glow {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }
    35% {
        opacity: 1;
        transform: scale(1.04);
    }
    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

@keyframes demo-scoreboard-sheen {
    0% {
        opacity: 0;
        right: 100%;
    }
    18% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        right: -22%;
    }
}

#demo-progress {
    flex: 1;
    justify-content: center;
    display: flex;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(17, 14, 17, 0.64);
    pointer-events: none;
}

.demo-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    transition: transform 160ms ease, background 160ms ease, width 160ms ease;
}

.demo-progress-dot.active {
    width: 20px;
    background: #ffd38c;
}

.demo-progress-dot.done {
    background: #fff4de;
}

#reconnect-indicator {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(14, 12, 14, 0.9);
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    z-index: 200;
}

#demo-dialog {
    display: none;
    position: fixed;
    left: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 100;
    width: min(520px, calc(100vw - 32px));
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 26px;
    background: var(--demo-panel);
    box-shadow: 0 18px 48px rgba(15, 9, 8, 0.28);
    border: 2px solid var(--demo-border);
    --demo-pointer-x: 50%;
    transform: translateX(-50%);
}

#demo-dialog::after {
    content: "";
    position: absolute;
    left: var(--demo-pointer-x);
    top: -14px;
    width: 24px;
    height: 24px;
    background: var(--demo-panel);
    transform: translateX(-50%) rotate(45deg);
}

#demo-dialog.visible {
    display: block;
}

#demo-choices {
    margin-top: 0;
}

#demo-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

#demo-reply-role {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(25, 18, 15, 0.08);
    color: #5d4136;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

#demo-reply-name {
    font-size: 14px;
    font-weight: 700;
    color: #4b3b36;
}

.demo-choice {
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    margin-bottom: 10px;
    border-radius: 16px;
    border: 1px solid rgba(87, 61, 44, 0.10);
    background: var(--demo-panel-strong);
    color: #283242;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    padding-left: 48px;
}

.demo-choice::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #191318 0%, #aa5c3a 100%);
    box-shadow: 0 0 0 4px rgba(170, 92, 58, 0.10);
}

.demo-choice:active {
    transform: scale(0.99);
    border-color: rgba(201, 93, 52, 0.42);
    background: #fff2e8;
}

.demo-choice.demo-choice-guided {
    border-color: rgba(201, 93, 52, 0.5);
    background: linear-gradient(180deg, rgba(255, 246, 239, 1) 0%, rgba(255, 238, 225, 0.98) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        0 10px 28px rgba(122, 49, 23, 0.12),
        0 0 0 4px rgba(255, 123, 84, 0.12);
}

.demo-choice.demo-choice-guided::before {
    background: linear-gradient(135deg, #ffb18a 0%, var(--demo-accent) 100%);
    box-shadow: 0 0 0 5px rgba(255, 123, 84, 0.14);
}

.demo-choice.demo-choice-guided::after {
    content: attr(data-guide-note);
    display: block;
    margin-top: 8px;
    color: #c24f26;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

#demo-complete {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    background: rgba(8, 7, 10, 0.82);
}

#demo-complete.visible {
    display: flex;
}

#demo-complete-card {
    width: min(100%, 420px);
    padding: 24px 20px 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.98) 0%, rgba(255, 245, 236, 0.96) 100%);
    box-shadow: var(--demo-shadow);
    text-align: center;
}

#demo-complete h2 {
    margin-top: 14px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #171112;
}

#demo-complete-score {
    margin-top: 14px;
    font-size: 26px;
    font-weight: 800;
    color: #9c4f31;
    letter-spacing: -0.04em;
}

#demo-complete-text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #5f4c45;
}

#demo-restart {
    margin-top: 18px;
    background: linear-gradient(135deg, #fff 0%, #fff6f0 100%);
    color: #1b1717;
    box-shadow: inset 0 0 0 1px rgba(49, 34, 28, 0.08);
}

#demo-share-tiktok {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

#demo-share-tiktok svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

#demo-share-tiktok.connected {
    background: #111;
    color: #9ff5d5;
    border-color: #27463c;
    pointer-events: none;
}

#demo-share-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 180;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    background: rgba(8, 7, 10, 0.84);
}

#demo-share-sheet.visible {
    display: flex;
}

#demo-share-sheet-card {
    width: min(100%, 440px);
    max-height: min(92vh, 780px);
    overflow-y: auto;
    padding: 22px 18px 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.99) 0%, rgba(255, 244, 235, 0.97) 100%);
    box-shadow: var(--demo-shadow);
    text-align: center;
}

#demo-share-sheet-kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 120, 84, 0.12);
    color: #b14c28;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#demo-share-sheet-title {
    margin-top: 14px;
    font-size: 30px;
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #171112;
}

#demo-share-sheet-text,
#demo-share-meta,
#demo-share-status {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #5f4c45;
}

#demo-share-preview {
    margin-top: 14px;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 9 / 16;
    max-height: 220px;
    border-radius: 18px;
    background: #100d10;
    object-fit: cover;
}

#demo-share-meta {
    font-size: 13px;
    color: #7b645c;
}

#demo-share-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.demo-share-field {
    display: grid;
    gap: 6px;
}

.demo-share-field span,
.demo-share-check span {
    font-size: 13px;
    color: #5f4c45;
}

.demo-share-field select {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(87, 61, 44, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: #2f2623;
    font-size: 14px;
    padding: 0 12px;
}

.demo-share-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(49, 34, 28, 0.06);
}

.demo-share-check input {
    margin-top: 2px;
}

.demo-share-check.disabled {
    opacity: 0.55;
}

.demo-share-consent {
    background: rgba(255, 244, 235, 0.96);
}

#demo-share-status.success {
    color: #245943;
}

#demo-share-status.error {
    color: #8e3a32;
}

#demo-share-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

#demo-share-primary,
#demo-share-secondary {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    border: 0;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

#demo-share-primary {
    background: linear-gradient(135deg, #111 0%, #2d141c 100%);
    color: #fff7f2;
}

#demo-share-primary[disabled] {
    opacity: 0.82;
    cursor: default;
}

#demo-share-primary.ready {
    background: linear-gradient(135deg, #10261f 0%, #1a4639 100%);
}

#demo-share-secondary {
    background: rgba(255, 255, 255, 0.75);
    color: #2f2623;
    box-shadow: inset 0 0 0 1px rgba(49, 34, 28, 0.08);
}

@media (max-width: 380px) {
    #demo-share-sheet {
        padding: 12px;
    }

    #demo-share-sheet-card {
        padding: 18px 14px 14px;
        border-radius: 22px;
    }

    #demo-share-sheet-title {
        font-size: 24px;
    }

    #demo-share-preview {
        max-width: 170px;
        max-height: 170px;
        border-radius: 16px;
    }

    #demo-share-meta,
    #demo-share-status,
    .demo-share-field span,
    .demo-share-check span {
        font-size: 12px;
    }

    .demo-share-check {
        padding: 8px 10px;
    }

    #demo-brand {
        min-width: 128px;
        padding: 8px 10px;
    }

    .demo-brand-mark {
        font-size: 10px;
    }

    .demo-brand-text {
        font-size: 15px;
    }

    #demo-legal-footer {
        width: calc(100vw - 20px);
        max-width: 350px;
        justify-content: center;
        gap: 14px;
        padding: 10px 12px;
    }

    #demo-legal-footer a {
        font-size: 11px;
    }

    .demo-intro-legal {
        gap: 12px;
        flex-wrap: wrap;
    }

    .demo-intro-legal a {
        font-size: 11px;
    }

    #demo-npc-message {
        font-size: 17px;
    }
}
