:root {
    --bg: #f5f5f5;
    --bg-soft: #ececec;
    --panel: rgba(255, 255, 255, 0.94);
    --panel-strong: #ffffff;
    --line: rgba(16, 16, 16, 0.08);
    --line-strong: rgba(16, 16, 16, 0.14);
    --text: #111111;
    --muted: #666666;
    --accent: #111111;
    --accent-contrast: #ffffff;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
    --container: min(1220px, calc(100vw - 48px));
    color-scheme: light;
}

body.dark-mode {
    --bg: #080909;
    --bg-soft: #101111;
    --panel: rgba(18, 18, 19, 0.94);
    --panel-strong: #111213;
    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f3f4f5;
    --muted: #8d9299;
    --accent: #f3f4f5;
    --accent-contrast: #090909;
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 75% 24%, rgba(255, 255, 255, 0.06), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.04), transparent 28%),
        var(--bg);
    transition: background 220ms ease, color 220ms ease;
}

main {
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.7px, transparent 0.7px);
    background-size: 22px 22px;
    opacity: 0.2;
}

body:not(.dark-mode)::before {
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 0.7px, transparent 0.7px);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 14%, transparent 88%, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.08rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--accent);
    color: var(--accent-contrast);
    font-weight: 900;
}

.brand-logo {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
}

.nav-links,
.nav-actions,
.hero-actions,
.footer-bottom,
.preview-meta,
.store-card-foot,
.purchase-summary {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 18px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 600;
}

.nav-links a.is-active,
.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    gap: 10px;
}

.btn,
.theme-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 11px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    cursor: pointer;
}

.btn:hover,
.theme-fab:hover {
    transform: translateY(-1px);
}

.admin-header-actions .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.96rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-contrast);
}

.btn-secondary,
.btn-discord {
    background: var(--panel);
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-dashboard {
    background: color-mix(in srgb, var(--accent) 88%, transparent);
    color: var(--accent-contrast);
}

.btn-wide {
    width: 100%;
}

.btn-small {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 0.9rem;
}

.hero,
.store-hero,
.product-hero,
.admin-section,
.tos-hero,
.status-hero {
    padding: 72px 0;
}

.hero-grid,
.faq-grid,
.footer-top,
.product-grid,
.admin-grid,
.demo-content {
    display: grid;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.98fr);
    gap: 64px;
    align-items: center;
}

.hero-home {
    padding-top: 82px;
    padding-bottom: 46px;
}

.hero-copy {
    max-width: 560px;
}

.pill,
.faq-button,
.store-badge,
.small-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: color-mix(in srgb, var(--panel) 92%, transparent);
    color: var(--text);
}

.small-pill,
.store-badge {
    padding: 6px 12px;
    font-size: 0.88rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -0.04em;
}

.hero h1,
.section-intro h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
}

.hero-home .hero-copy h1 {
    font-size: 30px;
    line-height: 1.1;
    max-width: 18ch;
}

.admin-shell .section-intro h1 {
    font-size: clamp(2.4rem, 4.2vw, 3.7rem);
    line-height: 1.02;
    max-width: 12ch;
}

.hero h1 span {
    display: block;
    color: var(--muted);
}

p,
.footer-col a,
.price-label,
.helper-text,
.purchase-header small,
.feature-panel p,
.info-label {
    color: var(--muted);
    line-height: 1.7;
}

.hero p {
    max-width: 540px;
    font-size: 0.95rem;
    margin: 18px 0 0;
}

.hero-home .hero-copy p {
    max-width: 30rem;
    font-size: 14px;
    color: #7d8290;
}

.hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: start;
}

.hero-home .hero-copy {
    max-width: 620px;
}

.hero-home .hero-copy h1 span {
    color: #68cb7e;
}

.hero-pill {
    color: #68cb7e;
    border-color: rgba(104, 203, 126, 0.24);
    background: rgba(104, 203, 126, 0.08);
    margin-bottom: 16px;
}

.hero-pill .status-dot {
    background: #68cb7e;
}

.hero-actions {
    gap: 12px;
    margin-top: 20px;
}

.hero-btn-primary {
    min-width: 152px;
    background: #68cb7e;
    color: #09110b;
}

.hero-btn-secondary {
    min-width: 184px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: #d8dde3;
}

.hero-btn-primary,
.hero-btn-secondary {
    gap: 10px;
}

.hero-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.98em;
}

.hero-btn-icon--star {
    color: #68cb7e;
    font-size: 1em;
}

.stat-cards,
.store-grid,
.requirements-grid,
.catalog-list {
    display: grid;
    gap: 20px;
}

.stat-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    max-width: 470px;
    gap: 14px;
}

.stat-card,
.faq-item,
.preview-card,
.store-card,
.purchase-card,
.feature-panel,
.info-card,
.admin-panel,
.catalog-item {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stat-card,
.info-card,
.catalog-item {
    border-radius: 18px;
}

.stat-card {
    padding: 16px 16px 14px;
    background: rgba(19, 20, 24, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stat-card span {
    display: block;
    color: #737987;
    font-size: 12px;
    white-space: nowrap;
}

.stat-icon {
    color: #68cb7e;
    font-size: 16px;
    line-height: 1;
}

.demo-shell {
    display: flex;
    justify-content: center;
    padding-right: 28px;
}

.featured-stage {
    width: min(100%, 470px);
}

.featured-stage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #8f95a2;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.featured-carousel {
    position: relative;
    min-height: 470px;
    perspective: 1400px;
}

.preview-card {
    width: min(100%, 370px);
    border-radius: 22px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.preview-card--stacked {
    position: absolute;
    top: 0;
    left: 50%;
    transition:
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 700ms ease,
        filter 700ms ease,
        box-shadow 700ms ease;
}

.preview-card--stacked.is-active {
    z-index: 3;
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-50%, 18px, 0) rotate(-1deg) scale(1);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.preview-card--stacked.is-right {
    z-index: 2;
    opacity: 0.72;
    filter: blur(0.1px);
    transform: translate3d(calc(-50% + 96px), 0, -40px) rotate(7deg) scale(0.88);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.preview-card--stacked.is-left {
    z-index: 1;
    opacity: 0.72;
    filter: blur(0.1px);
    transform: translate3d(calc(-50% - 96px), 0, -40px) rotate(-7deg) scale(0.88);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.preview-image,
.store-card-media,
.product-showcase {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.preview-image {
    min-height: 200px;
}

.preview-body {
    padding: 18px;
}

.preview-body h2 {
    margin-top: 12px;
    font-size: 1.35rem;
}

.preview-meta {
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.preview-body p {
    font-size: 13px;
}

.preview-meta span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
}

.preview-cta {
    min-height: 38px;
    padding: 0 14px;
    pointer-events: none;
}

.faq-section {
    padding: 0 0 72px;
}

.faq-page-hero {
    padding: 44px 0 26px;
}

.faq-page-sections {
    padding: 0 0 80px;
}

.faq-shell {
    width: 100%;
    max-width: 1220px;
    margin: 0;
}

.faq-page-intro {
    max-width: 760px;
}

.faq-page-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
    margin: 8px 0 10px;
}

.faq-page-intro p {
    max-width: 36rem;
    font-size: 0.84rem;
    margin: 0;
}

.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.faq-category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 92%, transparent);
    color: var(--text);
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-category-chip:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
}

.faq-page-block + .faq-page-block {
    margin-top: 44px;
}

.faq-category-copy {
    margin-bottom: 20px;
}

.faq-category-copy h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 8px;
}

.faq-category-copy p {
    margin: 0;
    font-size: 14px;
}

.faq-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 56px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 95%, transparent);
}

.reveal {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 28px), 0) scale(var(--reveal-scale, 1));
    filter: blur(6px);
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.reveal--left {
    --reveal-x: -28px;
    --reveal-y: 0;
}

.reveal--right {
    --reveal-x: 28px;
    --reveal-y: 0;
}

.reveal--scale {
    --reveal-y: 0;
    --reveal-scale: 0.98;
}

.faq-item summary {
    list-style: none;
    position: relative;
    padding: 24px 56px 24px 20px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--panel-strong) 92%, var(--bg-soft));
    border: 1px solid var(--line);
    color: var(--muted);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 14px;
}

.faq-copy h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.faq-copy p {
    font-size: 14px;
}

.faq-copy p + p {
    margin-top: 12px;
}

.faq-button {
    margin-top: 18px;
    font-weight: 700;
    justify-content: center;
}

.faq-button::before {
    content: "\2022\2022\2022";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    line-height: 1;
    letter-spacing: 0.08em;
    transform: translateY(-1px);
}

.section-intro {
    max-width: 700px;
}

.section-intro h1 {
    margin: 12px 0;
}

.store-hero .section-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
    margin: 8px 0 10px;
}

.store-hero .section-kicker {
    font-size: 0.68rem;
}

.store-hero .section-intro p {
    max-width: 28rem;
    font-size: 0.84rem;
    margin: 0;
}

.store-hero {
    padding: 44px 0 28px;
}

.status-hero .section-kicker,
.reviews-hero .section-kicker {
    font-size: 0.68rem;
}

.status-intro h1,
.reviews-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
    margin: 8px 0 10px;
}

.status-intro p,
.reviews-intro p {
    max-width: 28rem;
    font-size: 0.84rem;
    margin: 0;
}

.status-hero .status-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.status-hero .status-intro p {
    max-width: 28rem;
    font-size: 0.84rem;
}

.reviews-hero .reviews-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.reviews-hero .reviews-intro p {
    max-width: 28rem;
    font-size: 0.84rem;
}

.status-hero,
.reviews-hero {
    padding: 44px 0 28px;
}

.reviews-hero .reviews-intro .pill {
    justify-content: flex-start;
}

.section-intro p,
.compact-intro p {
    max-width: 620px;
}

.status-intro {
    max-width: 620px;
}

.overall-status,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text);
    font-weight: 700;
}

.overall-status {
    margin-top: 22px;
}

.status-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.overall-status--green,
.status-pill--green {
    color: #68cb7e;
    border-color: rgba(104, 203, 126, 0.28);
    background: rgba(104, 203, 126, 0.08);
}

.overall-status--yellow,
.status-pill--yellow {
    color: #e2c557;
    border-color: rgba(226, 197, 87, 0.28);
    background: rgba(226, 197, 87, 0.08);
}

.overall-status--blue,
.status-pill--blue {
    color: #6da8ff;
    border-color: rgba(109, 168, 255, 0.28);
    background: rgba(109, 168, 255, 0.08);
}

.overall-status--red,
.status-pill--red {
    color: #ef6b6b;
    border-color: rgba(239, 107, 107, 0.28);
    background: rgba(239, 107, 107, 0.08);
}

.status-section {
    padding-bottom: 84px;
}

.status-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 100%;
}

.status-card {
    position: relative;
}

.status-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 0.78;
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: color-mix(in srgb, var(--panel-strong) 92%, var(--bg-soft));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.status-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.12) 0%, rgba(7, 8, 12, 0.16) 30%, rgba(4, 5, 8, 0.84) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.18) 66%, rgba(0, 0, 0, 0.9) 100%);
}

.status-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.status-card--green .status-card-media {
    box-shadow: 0 22px 50px rgba(104, 203, 126, 0.16);
}

.status-card--yellow .status-card-media {
    box-shadow: 0 22px 50px rgba(226, 197, 87, 0.16);
}

.status-card--blue .status-card-media {
    box-shadow: 0 22px 50px rgba(109, 168, 255, 0.18);
}

.status-card--red .status-card-media {
    box-shadow: 0 22px 50px rgba(239, 107, 107, 0.18);
}

.status-card-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.status-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 18px 20px;
}

.status-card-topline {
    display: flex;
    justify-content: flex-end;
}

.status-copy-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(104, 203, 126, 0.2);
    background: rgba(8, 18, 10, 0.34);
    color: #68cb7e;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.status-card strong {
    display: block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #f2f2f2;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.status-card-copy .status-pill {
    width: fit-content;
    margin-top: 4px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.78rem;
}

.status-updated {
    margin-top: 28px;
    color: var(--muted);
}

.reviews-hero,
.review-form-section {
    padding: 72px 0 34px;
}

.reviews-intro {
    max-width: 620px;
    text-align: left;
}

.reviews-section {
    padding-bottom: 84px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reviews-grid--dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card,
.review-form-card {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.review-card {
    padding: 20px;
    border-radius: 18px;
}

.review-head,
.review-user {
    display: flex;
    align-items: center;
}

.review-head {
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.review-user {
    gap: 12px;
}

.review-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.92rem;
}

.review-stars {
    color: #68cb7e;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.review-card p {
    margin: 0;
    color: #c9cdd3;
    line-height: 1.65;
}

.review-product {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 90%, transparent);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.review-product:hover {
    transform: translateY(-1px);
    border-color: rgba(104, 203, 126, 0.35);
    background: rgba(104, 203, 126, 0.1);
}

.review-form-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 20px;
}

.generated-link {
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 94%, transparent);
    word-break: break-all;
}

.promo-modal[hidden] {
    display: none;
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    transition: opacity 420ms ease;
}

.promo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 460ms ease;
}

.promo-modal-dialog {
    position: relative;
    width: min(100%, 500px);
    margin: 28px auto;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0b;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    transform: translateY(28px) scale(0.93);
    opacity: 0;
    transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 460ms ease;
}

.promo-modal.is-open {
    opacity: 1;
}

.promo-modal.is-open .promo-modal-backdrop {
    opacity: 1;
    animation: promo-backdrop-in 520ms ease forwards;
}

.promo-modal.is-open .promo-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: promo-dialog-in 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes promo-backdrop-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes promo-dialog-in {
    0% {
        opacity: 0;
        transform: translateY(44px) scale(0.88);
    }
    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #d4d6da;
    font-size: 1.1rem;
    cursor: pointer;
}

.promo-discord-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #202226, #3a3d42);
    color: #ffffff;
}

.promo-discord-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.promo-discord-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.promo-discord-copy {
    display: grid;
    gap: 4px;
}

.promo-discord-copy strong {
    font-size: 1.05rem;
}

.promo-discord-copy small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
}

.promo-discord-arrow {
    margin-left: auto;
    font-size: 1.35rem;
    line-height: 1;
}

.promo-modal-body {
    padding: 6px 2px 0;
}

.promo-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: #a6abb3;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-modal-body h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.55rem;
}

.promo-intro,
.promo-code-note,
.promo-benefits li {
    color: #b7bcc4;
}

.music-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 35;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 58px;
    height: 58px;
    padding: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 11, 14, 0.82);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        width 320ms cubic-bezier(0.22, 1, 0.36, 1),
        background 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.music-widget:hover,
.music-widget:focus-within {
    width: 258px;
    background: rgba(10, 11, 14, 0.92);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
    transform: translateY(-2px);
}

.music-widget-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.music-widget-copy {
    display: grid;
    gap: 0;
    min-width: 0;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.music-widget-copy strong {
    font-size: 0.78rem;
    line-height: 1.1;
}

.music-widget-copy span {
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.1;
}

.music-widget-actions {
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.music-widget:hover .music-widget-copy,
.music-widget:hover .music-widget-actions,
.music-widget:focus-within .music-widget-copy,
.music-widget:focus-within .music-widget-actions {
    opacity: 1;
    transform: translateX(0);
}

.music-widget-btn {
    min-width: 50px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.music-widget-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.promo-code-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #121214;
}

.promo-code-head,
.promo-code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-code-head {
    margin-bottom: 12px;
}

.promo-code-head strong {
    font-size: 0.92rem;
    color: #f4f5f7;
}

.promo-code-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d8dbe0;
    font-size: 0.74rem;
    font-weight: 800;
}

.promo-code-box {
    flex: 1 1 auto;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d0d0f;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.promo-copy-btn {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #17181b;
    color: #f4f5f7;
    font-weight: 700;
    cursor: pointer;
}

.promo-code-note {
    margin: 12px 0 0;
    font-size: 0.88rem;
}

.promo-benefits {
    margin-top: 16px;
}

.promo-benefits h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
}

.promo-benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.promo-benefits li::before {
    content: "\2713";
    margin-right: 10px;
    color: #ffffff;
}

.promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7ea, #b9bec5);
    color: #090909;
    font-size: 0.96rem;
    font-weight: 800;
}

.inline-action-form {
    margin: 0;
}

.home-features,
.home-reviews-preview {
    padding: 0 0 84px;
}

.home-about {
    padding: 0 0 84px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.about-copy h2 {
    margin: 10px 0 12px;
    font-size: 30px;
    line-height: 1.1;
}

.about-copy p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.about-lede {
    font-weight: 600;
    color: var(--text);
}

.about-cards {
    display: grid;
    gap: 16px;
}

.about-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.about-card > :first-child {
    flex-shrink: 0;
}

.about-card > :first-child .about-icon {
    border-radius: 10px;
}

.about-card h3 {
    margin: 2px 0 8px;
    font-size: 1.1rem;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(104, 203, 126, 0.35);
    background: color-mix(in srgb, var(--panel-strong) 92%, rgba(104, 203, 126, 0.12));
    box-shadow: inset 0 0 0 1px rgba(104, 203, 126, 0.2);
    color: #68cb7e;
    font-weight: 800;
}

.about-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.home-features .section-intro,
.home-reviews-preview .section-intro {
    margin-bottom: 28px;
}

.home-features .section-intro p,
.home-reviews-preview .section-intro p {
    font-size: 14px;
}

.home-features .section-intro h2,
.home-reviews-preview .section-intro h2 {
    margin: 10px 0 12px;
    font-size: 30px;
    line-height: 1.1;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.feature-tile {
    padding: 24px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid rgba(104, 203, 126, 0.22);
    background: rgba(104, 203, 126, 0.08);
    color: #68cb7e;
    font-weight: 800;
}

.feature-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.feature-tile h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.feature-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reviews-marquee {
    position: relative;
    overflow: hidden;
    padding: 10px 0 6px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: reviews-marquee 28s linear infinite reverse;
}

.reviews-track .review-card-compact {
    width: 300px;
    flex: 0 0 auto;
}

@keyframes reviews-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track {
        animation: none;
    }
}

.review-card-compact {
    min-height: 180px;
}

.review-card-compact p {
    margin: 16px 0 18px;
    color: #c9cdd3;
}

.review-compact-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.review-compact-foot .review-user strong {
    color: var(--text);
    font-size: 0.95rem;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.tos-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.tos-intro h1 {
    margin: 12px 0;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.tos-intro p {
    max-width: 760px;
    margin: 0 auto;
}

.tos-section {
    padding-bottom: 80px;
}

.tos-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px 38px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.tos-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 2rem;
}

.tos-card h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.tos-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.tos-updated {
    margin-top: 28px;
    color: var(--muted);
}

.featured-strip {
    margin-bottom: 28px;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--panel);
    color: var(--text);
    font-weight: 700;
}

.static-tag {
    cursor: default;
}

.section-kicker {
    display: inline-block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.86rem;
    font-weight: 800;
}

.store-section {
    padding-bottom: 80px;
}

.store-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
}

.store-card {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
}

.store-card-media {
    min-height: 250px;
    padding: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.store-badge {
    gap: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: #68cb7e;
    border-color: rgba(104, 203, 126, 0.24);
    background: rgba(8, 18, 10, 0.34);
}

.store-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.store-card-body {
    padding: 20px;
}

.store-card-body h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.store-card-body p {
    font-size: 14px;
}

.store-hero .container,
.store-section .container {
    display: block;
}

.store-shell {
    width: 100%;
    max-width: var(--container);
    margin: 0;
}

.reviews-shell {
    width: 100%;
    max-width: var(--container);
    margin: 0;
}

.store-hero .section-intro {
    max-width: 620px;
    margin: 0;
}

.store-shell > .featured-strip,
.store-shell > .store-grid,
.store-shell > .empty-state {
    width: 100%;
}

.store-card-foot {
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.price-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
}

.store-card-foot strong,
.purchase-summary strong,
.duration-option strong {
    font-size: 20px;
    letter-spacing: -0.04em;
}

.product-hero {
    padding-top: 46px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: var(--panel);
}

.back-link::before {
    content: "<-";
}

.product-grid {
    grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: start;
}

.product-showcase {
    min-height: 430px;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.purchase-card,
.admin-panel {
    border-radius: 20px;
    padding: 24px;
}

.purchase-card h1 {
    font-size: 3rem;
    margin: 18px 0 22px;
}

.purchase-header {
    margin-bottom: 14px;
}

.purchase-header span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.duration-list {
    display: grid;
    gap: 12px;
}

.duration-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
    color: var(--text);
    font-weight: 700;
}

.duration-option.is-active {
    border-color: var(--line-strong);
}

.purchase-summary {
    justify-content: space-between;
    gap: 18px;
    margin: 24px 0 18px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.requirements-section,
.features-section {
    padding-bottom: 60px;
}

.compact-intro {
    margin-bottom: 28px;
}

.requirements-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    padding: 22px;
}

.info-label {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.feature-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-panel {
    padding: 22px 24px;
    border-radius: 18px;
}

.feature-panel h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.feature-panel ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-panel li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    color: var(--text);
}

.feature-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
    border: 1px solid var(--line);
    font-size: 0.72rem;
}

.admin-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 26px;
    align-items: start;
}

.admin-shell {
    min-height: 100vh;
}

.admin-dashboard {
    padding: 42px 0 72px;
}

.admin-login-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.admin-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.admin-header-actions {
    display: flex;
    gap: 12px;
}

.analytics-grid,
.admin-main-grid,
.admin-products-grid {
    display: grid;
    gap: 20px;
}

.analytics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.metric-card {
    padding: 22px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.metric-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.metric-card strong {
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.admin-main-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
    margin-bottom: 22px;
}

.admin-side-stack {
    display: grid;
    gap: 20px;
}

.admin-products-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
}

.panel-head {
    margin-bottom: 18px;
}

.panel-head h2 {
    margin-bottom: 6px;
}

.table-wrap {
    overflow: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.analytics-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.analytics-table th,
.analytics-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.analytics-table th {
    color: var(--muted);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: color-mix(in srgb, var(--panel-strong) 94%, transparent);
}

.rank-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 94%, transparent);
}

.rank-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-contrast);
    font-weight: 800;
}

.rank-item small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.status-admin-list {
    display: grid;
    gap: 16px;
}

.status-admin-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 94%, transparent);
}

.status-admin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.status-admin-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-admin-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--line);
    background-color: color-mix(in srgb, var(--panel-strong) 92%, var(--bg-soft));
}

.status-admin-note {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.82rem;
}

.status-field {
    padding: 0;
    border: 0;
    background: transparent;
}

.status-field span {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.status-admin-card input[type="text"],
.status-admin-card select,
.status-admin-card input[type="file"] {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: #4a4a4a;
    color: #ffffff;
    box-shadow: none;
}

body:not(.dark-mode) .status-admin-card input[type="text"],
body:not(.dark-mode) .status-admin-card select,
body:not(.dark-mode) .status-admin-card input[type="file"] {
    border-color: rgba(0, 0, 0, 0.25);
    background: #efefef;
    color: #111111;
}

.status-admin-card select option {
    background: #4a4a4a;
    color: #ffffff;
}

.faq-admin-grid {
    display: grid;
    gap: 18px;
}

.faq-admin-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
}

.faq-admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-admin-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-admin-card textarea {
    min-height: 180px;
}

.friendly-builder {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
}

.friendly-builder-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.friendly-builder-head strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.friendly-builder-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.builder-rows {
    display: grid;
    gap: 12px;
}

.builder-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}

.builder-row--stack {
    grid-template-columns: 1fr;
}

.builder-row .btn {
    min-height: 46px;
}

.status-field--full {
    grid-column: 1 / -1;
}

.admin-form,
.form-grid {
    display: grid;
    gap: 16px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}

.checkbox-field {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    margin-top: -4px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
    color: var(--text);
    resize: vertical;
}

.flash {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.flash-success {
    background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.flash-error {
    background: color-mix(in srgb, #5b1b1b 26%, var(--panel));
}

.admin-note {
    margin-top: 16px;
}

code {
    padding: 2px 6px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--panel-strong) 92%, transparent);
    border: 1px solid var(--line);
}

.catalog-list {
    margin-top: 12px;
}

.catalog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
}

.catalog-item span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.catalog-item a {
    color: var(--text);
    font-weight: 700;
}

.catalog-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-admin-block {
    margin-bottom: 20px;
}

.featured-admin-block h3 {
    margin-bottom: 8px;
}

.empty-state {
    padding: 28px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.large-empty {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.large-empty .btn {
    margin-top: 16px;
}

.admin-bullet-list,
.showcase-comment-list {
    display: grid;
    gap: 12px;
}

.admin-bullet-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.community-member-list {
    display: grid;
    gap: 14px;
}

.community-member-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 95%, transparent);
}

.community-member-copy strong,
.showcase-card-copy strong,
.showcase-comment-head strong,
.showcase-member-head strong {
    display: block;
}

.community-member-copy span,
.community-member-copy small,
.showcase-comment-head span,
.showcase-member-head span {
    color: var(--muted);
}

.community-member-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.community-signup-card {
    max-width: 620px;
    margin: 0 auto;
}

.showcase-shell {
    width: min(1220px, 100%);
}

.showcase-top-grid,
.showcase-viewer {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
}

.showcase-hero-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.showcase-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    min-width: 140px;
    padding-top: 10px;
}

.showcase-hero-actions .btn {
    min-width: 130px;
}

.showcase-hero-actions .btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.showcase-member-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.showcase-grid-section {
    padding: 0 0 84px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.showcase-grid > .large-empty {
    grid-column: 1 / -1;
}

.showcase-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 95%, transparent);
    box-shadow: var(--shadow);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.showcase-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #050607;
}

.showcase-card-media img,
.showcase-card-media iframe,
.showcase-card-media video,
.showcase-viewer-media iframe,
.showcase-viewer-media video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.showcase-play-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
}

.showcase-card-fallback,
.showcase-external {
    display: grid;
    place-items: center;
    min-height: 100%;
    color: var(--muted);
    text-align: center;
    padding: 24px;
}

.showcase-card-copy {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.showcase-card-copy p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.82rem;
}

.showcase-viewer {
    align-items: start;
}

.showcase-viewer-media,
.showcase-viewer-side {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 95%, transparent);
    box-shadow: var(--shadow);
}

.showcase-viewer-media {
    aspect-ratio: 16 / 10;
    min-height: 420px;
}

.showcase-zoom-in {
    animation: showcaseZoomIn 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
    transform-origin: center left;
}

@keyframes showcaseZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateX(-28px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.showcase-viewer-side {
    display: grid;
    gap: 0;
}

.showcase-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 92;
}

.showcase-viewer-dialog {
    position: relative;
    width: min(1200px, calc(100vw - 34px));
    margin: 5vh auto 0;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition: opacity 360ms ease, transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.showcase-viewer-modal.is-open .showcase-viewer-dialog,
.showcase-login-modal.is-open .showcase-login-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showcase-viewer--modal {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

.showcase-viewer-main {
    display: grid;
    gap: 18px;
}

.showcase-viewer--modal .showcase-viewer-media {
    margin-top: 0;
}

.showcase-viewer-copy,
.showcase-comments {
    padding: 22px;
}

.showcase-viewer-copy {
    border-bottom: 1px solid var(--line);
}

.showcase-viewer-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.showcase-viewer-caption h2 {
    margin: 14px 0 12px;
    font-size: 1.8rem;
}

.showcase-viewer-caption p,
.showcase-comment p {
    margin: 0;
}

.showcase-viewer-caption small,
.showcase-comment small {
    color: var(--muted);
}

.showcase-viewer-postedby {
    display: grid;
    justify-items: end;
    gap: 10px;
    min-width: 150px;
}

.showcase-viewer-postedby strong {
    font-size: 1.02rem;
    color: var(--text);
}

.showcase-comments .panel-head {
    margin-bottom: 14px;
}

.showcase-comment-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.showcase-comments {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.showcase-comment-list {
    flex: 1;
    min-height: 0;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
}

.showcase-comment {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.showcase-login-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.showcase-login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 8, 0.72);
    backdrop-filter: blur(8px);
}

.showcase-login-dialog {
    position: relative;
    width: min(100%, 420px);
    margin: 10vh auto 0;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel-strong) 96%, transparent);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition: opacity 340ms ease, transform 340ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.showcase-login-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
}

.showcase-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.footer {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.footer-top {
    align-items: start;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding: 52px 0 38px;
}

.footer-col {
    align-self: start;
}

.footer-col h3,
.footer-col h4 {
    margin-top: 0;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
}

.brand-copy {
    max-width: 320px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.footer-brand img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    object-fit: cover;
    border: none;
    background: transparent;
}

.footer-brand h3 {
    margin: 0 0 6px;
}

.footer-brand-copy {
    display: grid;
    align-content: start;
    padding-top: 2px;
}

.footer-bottom {
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 40px;
    border-top: 1px solid var(--line);
}

.system-status em {
    font-style: normal;
    color: var(--text);
}

.system-status em::before {
    content: "*";
    margin-right: 6px;
}

.theme-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: color-mix(in srgb, var(--panel) 92%, transparent);
    color: var(--text);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.theme-fab-sun,
.theme-fab-moon {
    position: absolute;
    font-size: 1.15rem;
    transition: opacity 180ms ease, transform 180ms ease;
}

.theme-fab-sun {
    opacity: 0;
    transform: scale(0.7);
}

.theme-fab-moon {
    opacity: 1;
    transform: scale(1);
}

body:not(.dark-mode) .theme-fab-sun {
    opacity: 1;
    transform: scale(1);
}

body:not(.dark-mode) .theme-fab-moon {
    opacity: 0;
    transform: scale(0.7);
}

.theme-fab::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.motion-float {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .product-grid,
    .faq-grid,
    .admin-grid,
    .admin-main-grid,
    .admin-products-grid,
    .showcase-top-grid,
    .showcase-viewer,
    .feature-strip,
    .reviews-grid,
    .reviews-row,
    .analytics-grid,
    .requirements-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .feature-grid-2 {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }

    .hero-home .hero-grid {
        grid-template-columns: 1fr;
    }

    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-stage {
        width: min(100%, 390px);
    }

    .featured-carousel {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(1220px, calc(100vw - 28px));
    }

    .nav-row,
    .nav-links,
    .nav-actions,
    .hero-actions,
    .footer-bottom,
    .preview-meta,
    .store-card-foot {
        flex-wrap: wrap;
    }

    .nav-row {
        padding: 14px 0;
        justify-content: center;
    }

    .music-widget {
        display: none;
    }

    .nav-links,
    .nav-actions {
        justify-content: center;
        width: 100%;
    }

    .nav-actions > * {
        flex: 1 1 0;
        min-width: 0;
    }

    .catalog-item,
    .catalog-actions,
    .community-member-card,
    .community-member-actions,
    .showcase-member-head,
    .showcase-comment-head,
    .showcase-hero-actions,
    .showcase-hero-head {
        flex-wrap: wrap;
    }

    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .status-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .featured-stage {
        width: 100%;
    }

    .featured-carousel {
        min-height: 350px;
    }

    .preview-card {
        width: min(100%, 290px);
    }

    .preview-image {
        min-height: 150px;
    }

    .preview-body {
        padding: 14px;
    }

    .preview-body h2 {
        font-size: 1.05rem;
    }

    .preview-body p {
        font-size: 12px;
    }

    .preview-meta {
        gap: 10px;
        margin-top: 14px;
    }

    .preview-meta span:first-child {
        font-size: 0.84rem;
    }

    .preview-cta {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.84rem;
    }

    .preview-card--stacked.is-active {
        transform: translate3d(-50%, 10px, 0) rotate(-1deg) scale(1);
    }

    .preview-card--stacked.is-right {
        transform: translate3d(calc(-50% + 22px), 0, -40px) rotate(4deg) scale(0.9);
    }

    .preview-card--stacked.is-left {
        transform: translate3d(calc(-50% - 22px), 0, -40px) rotate(-4deg) scale(0.9);
    }

    .hero,
    .store-hero,
    .product-hero,
    .admin-section,
    .tos-hero,
    .status-hero,
    .reviews-hero,
    .review-form-section {
        padding: 52px 0;
    }

    .hero-home {
        padding-top: 60px;
    }

    .hero h1,
    .section-intro h1,
    .purchase-card h1 {
        font-size: 2.5rem;
    }

    .store-card-foot strong,
    .purchase-summary strong,
    .duration-option strong {
        font-size: 1.55rem;
    }

    .form-grid,
    .demo-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .demo-shell,
    .preview-card {
        width: 100%;
    }

    .product-showcase {
        min-height: 280px;
    }

    .showcase-viewer-media {
        min-height: 240px;
    }

    .showcase-hero-actions {
        justify-content: flex-start;
        padding-top: 0;
        min-width: 0;
    }

    .showcase-viewer-dialog {
        width: min(100%, calc(100vw - 20px));
        margin-top: 4vh;
        padding: 14px;
    }

    .showcase-viewer--modal {
        grid-template-columns: 1fr;
    }

    .showcase-viewer-meta-row {
        grid-template-columns: 1fr;
    }

    .showcase-viewer-postedby {
        justify-items: start;
        min-width: 0;
    }

    .showcase-login-dialog {
        width: min(100%, 360px);
        margin-top: 8vh;
        padding: 20px;
    }

    .purchase-summary {
        align-items: flex-start;
    }

    .theme-fab {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .admin-panel-top,
    .admin-header-row,
    .admin-header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tos-card {
        padding: 24px 20px;
    }

    .status-card-media {
        width: 100%;
        min-height: 360px;
    }

    .status-card-top,
    .status-admin-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
        padding: 38px 0 28px;
    }

    .brand-copy {
        max-width: none;
        grid-column: 1 / -1;
    }

    .footer-brand {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .footer-brand img {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }

    .footer-brand-copy {
        padding-top: 0;
    }

    .footer-brand-copy p {
        margin: 0;
        max-width: 22rem;
        line-height: 1.65;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 20px 0 32px;
    }

    .promo-modal-dialog {
        width: min(100%, 380px);
        margin: 20px auto;
        padding: 14px;
        border-radius: 14px;
    }

    .promo-modal-close {
        top: 10px;
        right: 12px;
        font-size: 1rem;
    }

    .promo-discord-card {
        gap: 10px;
        padding: 12px 14px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .promo-discord-icon {
        width: 36px;
        height: 36px;
    }

    .promo-discord-icon img {
        width: 18px;
        height: 18px;
    }

    .promo-discord-copy strong {
        font-size: 0.98rem;
    }

    .promo-discord-copy small {
        font-size: 0.76rem;
    }

    .promo-discord-arrow {
        font-size: 1.1rem;
    }

    .promo-kicker {
        font-size: 0.68rem;
    }

    .promo-modal-body h2 {
        font-size: 1.18rem;
        margin-bottom: 8px;
    }

    .promo-intro {
        font-size: 0.92rem;
    }

    .promo-code-card {
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
    }

    .promo-code-head {
        margin-bottom: 10px;
    }

    .promo-code-head strong {
        font-size: 0.84rem;
    }

    .promo-code-head span {
        min-height: 24px;
        padding: 0 10px;
        font-size: 0.68rem;
    }

    .promo-code-row {
        gap: 10px;
    }

    .promo-code-box {
        min-height: 42px;
        font-size: 1.2rem;
        padding: 0 12px;
    }

    .promo-copy-btn {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .promo-code-note {
        font-size: 0.82rem;
        margin-top: 10px;
    }

    .promo-benefits {
        margin-top: 14px;
    }

    .promo-benefits h3 {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .promo-benefits ul {
        gap: 6px;
    }

    .promo-benefits li {
        font-size: 0.92rem;
    }

    .promo-cta {
        min-height: 44px;
        margin-top: 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}
