:root {
    --bg: #0b0d13;
    --bg-soft: #11141c;
    --surface: #161616;
    --surface-elevated: #1a1a1a;
    --surface-soft: #202020;
    --surface-line: rgba(255, 255, 255, 0.06);
    --text: #f6f7fb;
    --muted: rgba(255, 255, 255, 0.68);
    --accent: #304f9e;
    --accent-strong: #3e64c4;
    --accent-soft: rgba(48, 79, 158, 0.18);
    --success: #1ca06b;
    --error: #b33f46;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --accent-glow: 0 16px 42px rgba(48, 79, 158, 0.28);
    --max-width: 1370px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #090b11 0%, #0b0d13 100%);
}

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

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

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.header-bg,
.header-shade,
.header-particles {
    position: absolute;
    inset: 0;
}

.header-bg {
    z-index: 0;
    background-size: cover;
    background-position: center top;
    filter: saturate(0.98) brightness(0.92);
}

.header-shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 7, 12, 0.1) 0%, rgba(6, 8, 14, 0.2) 42%, rgba(11, 13, 19, 0.93) 100%),
        radial-gradient(circle at 22% 14%, rgba(145, 92, 111, 0.18), transparent 26%);
}

.header-particles {
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.header-particle {
    position: absolute;
    width: var(--particle-size);
    height: var(--particle-size);
    left: var(--particle-x);
    top: var(--particle-y);
    border-radius: 999px;
    background: rgba(255, 255, 255, var(--particle-opacity));
    box-shadow:
        0 0 calc(var(--particle-size) * 2.6) rgba(255, 255, 255, calc(var(--particle-opacity) * 0.82)),
        0 0 calc(var(--particle-size) * 5.2) rgba(255, 255, 255, calc(var(--particle-opacity) * 0.22));
    filter: blur(var(--particle-blur));
    transform: translate3d(0, 0, 0) scale(0.74);
    animation: headerParticleDrift var(--particle-duration) linear infinite;
    animation-delay: var(--particle-delay);
    will-change: transform, opacity;
}

@keyframes headerParticleDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(0.76);
        opacity: 0;
    }

    12% {
        opacity: calc(var(--particle-opacity) * 0.78);
    }

    44% {
        transform: translate3d(calc(var(--particle-drift-x) * 0.42), calc(var(--particle-drift-y) * 0.42), 0) scale(1.08);
        opacity: var(--particle-opacity);
    }

    72% {
        opacity: calc(var(--particle-opacity) * 0.9);
    }

    100% {
        transform: translate3d(var(--particle-drift-x), var(--particle-drift-y), 0) scale(1.24);
        opacity: 0;
    }
}

.header-nav {
    padding-top: 1rem;
}

.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0.3em 1.15em;
    padding: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.04rem;
    font-weight: 600;
    transition: 0.2s;
}

.nav-link i {
    margin-right: 0.1rem;
    font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.logo-ds-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 310px;
    position: relative;
    z-index: 10;
}

.status-box-container,
.discord-box-container {
    flex: 1;
    z-index: 1;
}

.status-box-container {
    display: flex;
    justify-content: flex-end;
}

.discord-box-container {
    display: flex;
    justify-content: flex-start;
}

.logo-container {
    z-index: 1;
    height: fit-content;
    padding: 0 1.5rem;
}

.brand-cluster {
    display: block;
}

.brand-logo {
    width: 190px;
    max-width: 100%;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.3));
    transition: 0.25s;
}

.brand-cluster:hover .brand-logo {
    filter: brightness(92%);
}

.server-clock {
    display: grid;
    justify-items: center;
    gap: 0.15rem;
    margin-top: 0.75rem;
    padding: 0.62rem 0.95rem;
    border: 1px solid rgba(84, 122, 222, 0.24);
    border-radius: 0.15rem;
    background: rgba(10, 12, 18, 0.62);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.server-clock-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-clock strong {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1;
}

.server-clock span:last-child {
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-info-link {
    z-index: 100000;
    display: flex;
    align-items: center;
    color: #afa6a6;
    transition: 0.25s;
}

.status-text {
    margin-right: 50px;
    text-align: right;
}

.discord-text {
    margin-left: 50px;
    text-align: left;
}

.header-info-link:hover {
    color: #fff;
}

.header-info-link .text {
    display: flex;
    flex-direction: column;
}

.top-text {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
}

.bottom-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-info-link .icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.status-text .icon {
    margin-left: 10px;
}

.discord-text .icon {
    margin-right: 12px;
}

.header-info-link .icon i {
    font-size: 2.2rem;
    color: var(--accent);
}

.header-info-link .icon::after {
    content: "";
    position: absolute;
    top: 84%;
    left: 28%;
    width: 45%;
    height: 4px;
    border-radius: 10px;
    background: var(--accent);
    box-shadow: 0 0 10px 0 var(--accent);
    transition: 0.25s;
}

.header-info-link:hover .icon {
    transform: translateY(3px);
}

.header-info-link:hover .icon::after {
    top: 91%;
}

.top-container {
    margin-top: -72px;
    z-index: 20;
}

.content-shell {
    display: grid;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
}

.content-stack,
.sidebar-stack,
.auth-grid,
.account-grid,
.content-grid,
.actions-grid,
.service-grid,
.info-grid,
.stat-grid,
.form-grid,
.quick-links {
    display: grid;
    gap: 1.2rem;
}

.content-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
    align-items: start;
}

.sidebar-stack {
    align-content: start;
}

.auth-grid {
    max-width: 880px;
    margin: 0 auto;
}

.account-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
}

.store-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 1.2rem;
    align-items: start;
}

.store-product-card {
    border-color: rgba(84, 122, 222, 0.26);
    background:
        radial-gradient(500px circle at 12% 0%, rgba(48, 79, 158, 0.2), transparent 55%),
        rgba(22, 22, 22, 0.98);
}

.store-page {
    gap: 1.25rem;
}

.store-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(84, 122, 222, 0.18);
    border-radius: 0.15rem;
    background:
        radial-gradient(720px circle at 10% 0%, rgba(48, 79, 158, 0.22), transparent 58%),
        rgba(22, 22, 22, 0.98);
    box-shadow: var(--shadow);
}

.store-intro h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    line-height: 1.08;
}

.store-intro p {
    max-width: 720px;
    margin: 0.65rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.store-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
    min-width: min(100%, 360px);
}

.store-trust-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.82rem;
    font-weight: 700;
}

.store-confidence-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.store-confidence-strip > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.18rem 0.7rem;
    align-items: center;
    min-height: 92px;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-confidence-strip i {
    grid-row: span 2;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 0.15rem;
    color: #9bb6ff;
    background: rgba(48, 79, 158, 0.24);
}

.store-confidence-strip strong {
    color: #ffffff;
    line-height: 1.25;
}

.store-confidence-strip span {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.store-admin-callout,
.store-category-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.store-admin-callout {
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(84, 122, 222, 0.22);
    border-radius: 0.15rem;
    background: rgba(48, 79, 158, 0.12);
}

.store-admin-callout span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.store-category-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.52rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 800;
}

.store-category-tabs a:hover,
.store-category-tabs a.is-active {
    border-color: rgba(84, 122, 222, 0.5);
    background: rgba(48, 79, 158, 0.36);
    color: #ffffff;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.store-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        rgba(20, 21, 26, 0.98);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.store-plan-card:hover {
    transform: translateY(-3px);
    border-color: rgba(141, 175, 255, 0.32);
}

.store-plan-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.58;
    background: radial-gradient(380px circle at 50% -12%, rgba(255, 255, 255, 0.11), transparent 60%);
}

.store-plan-top,
.store-plan-heading,
.store-plan-price,
.store-benefit-list,
.store-plan-card .form-actions {
    position: relative;
    z-index: 1;
}

.store-plan-top {
    display: grid;
    gap: 0.55rem;
    min-height: 74px;
    margin-bottom: 0.95rem;
}

.store-plan-kicker,
.store-plan-badge {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
}

.store-plan-kicker {
    min-height: 27px;
    padding: 0.38rem 0.62rem;
    color: #ffffff;
    background: rgba(48, 79, 158, 0.8);
}

.store-plan-badge {
    min-height: 30px;
    padding: 0.4rem 0.68rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.store-plan-badge-gift {
    position: relative;
    isolation: isolate;
    color: #fff4c5;
    background:
        linear-gradient(135deg, rgba(255, 213, 104, 0.32), rgba(132, 91, 255, 0.2)),
        rgba(56, 42, 18, 0.86);
    border-color: rgba(255, 224, 137, 0.66);
    box-shadow:
        0 0 0 1px rgba(255, 239, 183, 0.12) inset,
        0 0 18px rgba(255, 199, 81, 0.52),
        0 0 34px rgba(132, 91, 255, 0.28);
    text-shadow: 0 0 12px rgba(255, 214, 117, 0.56);
}

.store-plan-badge-gift::before {
    content: "";
    position: absolute;
    inset: -7px -10px;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 214, 117, 0.36), transparent 68%);
    opacity: 0.95;
    animation: storeGiftHalo 2.2s ease-in-out infinite;
}

.store-plan-heading h2 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
}

.store-plan-heading {
    min-height: 218px;
}

.store-plan-heading p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    line-height: 1.62;
}

.store-plan-price {
    display: grid;
    gap: 0.32rem;
    align-content: center;
    min-height: 136px;
    margin: 1rem 0;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.04);
}

.store-plan-price strong {
    color: #ffffff;
    max-width: 100%;
    font-size: clamp(1.45rem, 2vw, 1.72rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.store-plan-price span,
.store-plan-price em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

.store-plan-price em {
    color: #8fafff;
}

.store-benefit-list {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-benefit-list li {
    position: relative;
    margin: 0;
    padding: 0.45rem 0 0.45rem 1.25rem;
    color: var(--muted);
    line-height: 1.48;
}

.store-benefit-list li::before {
    content: "";
    position: absolute;
    top: 0.98rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8fafff;
    box-shadow: 0 0 12px rgba(84, 122, 222, 0.72);
}

.store-benefit-list .store-benefit-more {
    color: rgba(210, 218, 235, 0.68);
    font-size: 0.92rem;
}

.store-benefit-list .store-benefit-more::before {
    background: transparent;
    border: 1px solid rgba(210, 218, 235, 0.4);
    box-shadow: none;
}

.store-plan-card .form-actions {
    margin-top: 1rem;
}

.store-plan-card .button {
    width: 100%;
    min-width: 0;
}

.store-plan-detail-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 800;
}

.store-plan-detail-link:hover {
    color: #ffffff;
}

.store-comparison-card {
    border-color: rgba(84, 122, 222, 0.18);
}

.store-comparison-table-wrap {
    overflow-x: auto;
}

.store-comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.store-comparison-table th,
.store-comparison-table td {
    padding: 0.9rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    vertical-align: top;
}

.store-comparison-table th {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.store-comparison-table td {
    color: var(--muted);
    line-height: 1.5;
}

.store-comparison-table td strong {
    display: block;
    color: #ffffff;
}

.store-comparison-table td span {
    display: block;
    margin-top: 0.22rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

.store-choice-grid,
.store-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.store-faq-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-choice-card h3,
.store-faq-grid h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.3;
}

.store-choice-card p,
.store-faq-grid p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.62;
}

.store-product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 1.2rem;
    overflow: hidden;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.15rem;
    background:
        radial-gradient(540px circle at 10% 0%, rgba(48, 79, 158, 0.2), transparent 58%),
        rgba(20, 21, 26, 0.98);
    box-shadow: var(--shadow);
}

.store-product-hero h2 {
    margin: 0.85rem 0 0;
    color: #ffffff;
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    line-height: 1;
}

.store-product-hero p {
    max-width: 820px;
    margin: 0.9rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.store-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.store-product-meta span {
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
}

.store-product-buybox {
    align-self: start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-product-buybox .store-plan-price {
    margin-top: 0;
}

.store-product-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1rem;
}

.store-plan-recommended {
    border-color: rgba(84, 122, 222, 0.6);
    background:
        radial-gradient(460px circle at 50% -4%, rgba(48, 79, 158, 0.34), transparent 60%),
        linear-gradient(180deg, rgba(34, 55, 112, 0.68), rgba(21, 23, 32, 0.98)),
        rgba(20, 21, 26, 0.98);
    box-shadow: 0 22px 50px rgba(16, 30, 74, 0.42);
}

.store-plan-recommended:hover {
    transform: translateY(-3px);
}

.store-plan-recommended::after,
.store-plan-legendary::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: storePulse 2.6s ease-in-out infinite;
}

.store-plan-constant {
    border-color: rgba(94, 176, 150, 0.32);
}

.store-plan-constant .store-plan-kicker,
.store-plan-constant .store-benefit-list li::before {
    background: #41a685;
    box-shadow: 0 0 14px rgba(65, 166, 133, 0.6);
}

.store-plan-legendary {
    border-color: rgba(228, 183, 93, 0.42);
    background:
        radial-gradient(520px circle at 50% -8%, rgba(228, 183, 93, 0.22), transparent 58%),
        linear-gradient(180deg, rgba(53, 43, 25, 0.62), rgba(21, 21, 24, 0.98)),
        rgba(20, 21, 26, 0.98);
}

.store-plan-legendary .store-plan-kicker,
.store-plan-legendary .store-benefit-list li::before {
    background: #d69b3b;
    box-shadow: 0 0 16px rgba(214, 155, 59, 0.58);
}

.store-plan-entry {
    border-color: rgba(210, 218, 235, 0.14);
}

.store-benefits-card {
    border-color: rgba(84, 122, 222, 0.18);
}

.store-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.store-benefit-grid > div {
    min-height: 118px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-benefit-grid strong {
    display: block;
    color: #ffffff;
    line-height: 1.35;
}

.store-benefit-grid p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

@keyframes storePulse {
    0%,
    100% {
        opacity: 0.3;
        box-shadow: 0 0 0 rgba(84, 122, 222, 0);
    }

    50% {
        opacity: 0.9;
        box-shadow: 0 0 24px rgba(84, 122, 222, 0.22);
    }
}

@keyframes storeGiftHalo {
    0%,
    100% {
        opacity: 0.52;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.store-price {
    display: grid;
    gap: 0.35rem;
    margin: 1.1rem 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-price strong {
    font-size: 2rem;
    line-height: 1;
}

.store-price span {
    color: var(--muted);
    font-weight: 600;
}

.store-code-box {
    width: fit-content;
    max-width: 100%;
    margin-top: 1rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(84, 122, 222, 0.36);
    border-radius: 0.15rem;
    background: rgba(48, 79, 158, 0.16);
    color: #fff;
    font-family: "Courier New", monospace;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
}

.store-maintenance-card {
    max-width: 620px;
    margin: 0 auto;
    border-color: rgba(84, 122, 222, 0.24);
    background:
        radial-gradient(520px circle at 16% 0%, rgba(48, 79, 158, 0.22), transparent 60%),
        rgba(22, 22, 22, 0.98);
}

.store-maintenance-card h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.store-maintenance-card p {
    margin: 0.85rem 0 1.2rem;
    color: var(--muted);
    line-height: 1.65;
}

.store-maintenance-form {
    gap: 1rem;
}

.store-admin-dashboard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.store-admin-dashboard .card {
    display: grid;
    gap: 0.35rem;
}

.store-admin-dashboard strong {
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1;
}

.store-admin-dashboard p {
    margin: 0;
    color: var(--muted);
}

.store-admin-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 1rem;
    align-items: start;
}

.store-admin-grid .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-admin-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-admin-checks label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.store-admin-list {
    display: grid;
    gap: 0.7rem;
}

.store-admin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.store-admin-row:hover {
    border-color: rgba(84, 122, 222, 0.34);
    background: rgba(255, 255, 255, 0.052);
}

.store-admin-row span {
    color: #ffffff;
    font-weight: 800;
}

.store-admin-row em {
    color: var(--muted);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 700;
    text-align: right;
}

.launcher-news-editor {
    display: grid;
    gap: 1rem;
}

.launcher-news-row {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 150px;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(205, 163, 95, 0.22);
    border-radius: 16px;
    background: rgba(8, 11, 18, 0.38);
}

.launcher-news-row label {
    display: grid;
    gap: 0.45rem;
}

.launcher-news-row label span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.launcher-news-body {
    grid-column: 1 / -1;
}

.launcher-admin-page code {
    color: #f2d390;
    word-break: break-word;
}

.launcher-sessions-page .store-admin-dashboard {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launcher-session-filter {
    grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.35fr) auto;
    align-items: end;
}

.launcher-session-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.launcher-session-list {
    display: grid;
    gap: 0.75rem;
}

.launcher-session-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.launcher-session-main {
    display: grid;
    min-width: 0;
    gap: 0.5rem;
}

.launcher-session-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.launcher-session-title strong {
    color: #ffffff;
    overflow-wrap: anywhere;
}

.launcher-session-meta,
.launcher-session-time {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.launcher-auth-row {
    background: rgba(7, 14, 30, 0.48);
}

.code-admin-results {
    border-color: rgba(122, 193, 255, 0.28);
}

.code-admin-generated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
}

.code-admin-generated-card {
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(7, 14, 30, 0.56);
}

.code-admin-generated-card span,
.code-admin-generated-card em,
.code-admin-generated-card small {
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
}

.code-admin-generated-card strong {
    color: #ffffff;
    font-size: 1.12rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.code-admin-row {
    align-items: flex-start;
}

.code-admin-row span,
.code-admin-row em {
    overflow-wrap: anywhere;
}

.code-admin-inline-form {
    flex: 0 0 auto;
}

.code-admin-inline-form .button {
    min-height: 0;
    padding: 0.55rem 0.8rem;
}

.store-admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.store-order-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: end;
}

.store-orders-shortcut .card-header {
    margin-bottom: 0;
}

.store-admin-filters a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.store-admin-filters a:hover,
.store-admin-filters a.is-active {
    border-color: rgba(84, 122, 222, 0.48);
    background: rgba(48, 79, 158, 0.28);
    color: #ffffff;
}

.store-orders-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.account-grid > .card {
    height: 100%;
}

.actions-grid,
.info-grid,
.stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    margin: 0;
    padding: 1.4rem 1.55rem;
    overflow: hidden;
    background: rgba(22, 22, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.15rem;
    box-shadow: var(--shadow);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.05rem;
}

.card-header h2,
.card-header h3 {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 700;
}

.card-header p {
    margin: 0.35rem 0 0;
}

.promo-card .card-header {
    margin-bottom: 1rem;
}

.promo-card .card-header h3 {
    margin: 0;
    font-size: 2.1rem;
    font-style: italic;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.promo-card {
    background:
        linear-gradient(180deg, rgba(53, 86, 168, 0.94), rgba(35, 51, 89, 0.96)),
        #243767;
    border-color: rgba(113, 144, 240, 0.34);
}

.promo-card p {
    color: rgba(255, 255, 255, 0.84);
}

.promo-card .badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.promo-card .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.welcome-card {
    padding: 1.4rem 1.45rem;
    background: rgba(22, 22, 22, 0.98);
    margin-bottom: 1rem;
}

.welcome-card-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.welcome-copy {
    flex: 1 1 auto;
}

.welcome-title {
    margin: 0;
    color: var(--accent);
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.05;
}

.welcome-text {
    margin: 0.45rem 0 0;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

.welcome-actions,
.form-actions,
.footer-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    padding: 0.75rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 0.15rem;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: none;
}

.button-secondary {
    color: #fff;
    background: #303030;
    border-color: transparent;
}

.button-danger {
    color: #fff;
    background: #74292d;
}

.service-item {
    height: 100%;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-line);
    border-radius: 0.15rem;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 0.2rem;
    background: var(--accent-soft);
    color: #8dafff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    font-size: 1.15rem;
}

.service-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.service-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.community-card {
    border-color: rgba(84, 122, 222, 0.18);
    background:
        radial-gradient(420px circle at 18% 0%, rgba(48, 79, 158, 0.2), transparent 58%),
        rgba(22, 22, 22, 0.98);
}

.community-count {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.035);
}

.community-count strong {
    color: #fff;
    font-size: clamp(2.15rem, 5vw, 3.1rem);
    line-height: 1;
}

.community-count span {
    color: var(--muted);
    font-weight: 700;
}

.quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--surface-line);
    border-radius: 0.15rem;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.quick-link:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 100, 196, 0.38);
    background: rgba(255, 255, 255, 0.05);
}

.quick-link strong {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 1.04rem;
}

.quick-link > div span,
.helper-text,
.muted-text,
.details-list li,
.feature-list li,
.step-list li,
.alert p,
.alert li,
.empty-state {
    color: var(--muted);
    line-height: 1.65;
}

.quick-link-arrow {
    color: rgba(255, 255, 255, 0.52);
    font-size: 1rem;
}

.details-list,
.feature-list,
.step-list,
.alert ul {
    margin: 0;
    padding-left: 1.15rem;
}

.details-list li,
.feature-list li,
.step-list li {
    margin-bottom: 0.5rem;
}

.details-list li::marker,
.feature-list li::marker,
.step-list li::marker,
.alert li::marker {
    color: var(--accent);
}

.divider {
    height: 1px;
    margin: 1.35rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.identity {
    display: grid;
    gap: 0.3rem;
}

.identity strong {
    font-size: 1.75rem;
    font-weight: 700;
    word-break: break-word;
}

.identity span {
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-line);
    border-radius: 0.15rem;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stat-value {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.75rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.alert {
    border-radius: 0.15rem;
    padding: 0.95rem 1rem;
}

.alert-success {
    background: rgba(28, 160, 107, 0.12);
    border: 1px solid rgba(28, 160, 107, 0.24);
}

.alert-error {
    background: rgba(179, 63, 70, 0.14);
    border: 1px solid rgba(179, 63, 70, 0.24);
}

.alert-info {
    background: rgba(48, 79, 158, 0.13);
    border: 1px solid rgba(84, 122, 222, 0.24);
}

.form-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field label,
.field > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: #202228;
    color: #fff;
    font: inherit;
}

.field select option {
    color: #101114;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(62, 100, 196, 0.58);
    box-shadow: 0 0 0 3px rgba(48, 79, 158, 0.15);
}

.ranking-section {
    padding-top: 1.6rem;
}

.ranking-header {
    margin-bottom: 1.3rem;
}

.ranking-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.ranking-tabs,
.pagination-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ranking-tab,
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ranking-tab:hover,
.pagination-link:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 100, 196, 0.34);
    color: #fff;
}

.ranking-tab.is-active,
.pagination-link.is-current {
    background: var(--accent);
    border-color: rgba(84, 122, 222, 0.65);
    color: #fff;
}

.ranking-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.ranking-search-group {
    position: relative;
    min-width: min(100%, 320px);
}

.ranking-search-group i {
    position: absolute;
    top: 50%;
    left: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.ranking-search-group input {
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: #202228;
    color: #fff;
    font: inherit;
}

.ranking-search-group input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.ranking-search-group input:focus {
    outline: none;
    border-color: rgba(62, 100, 196, 0.58);
    box-shadow: 0 0 0 3px rgba(48, 79, 158, 0.15);
}

.ranking-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.podium-card {
    display: grid;
    gap: 0.9rem;
    min-height: 220px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.02);
}

.podium-card.is-rank-1 {
    border-color: rgba(84, 122, 222, 0.44);
    background:
        linear-gradient(180deg, rgba(48, 79, 158, 0.32), rgba(48, 79, 158, 0.08)),
        rgba(255, 255, 255, 0.02);
}

.podium-card.is-rank-2 {
    border-color: rgba(216, 224, 238, 0.22);
}

.podium-card.is-rank-3 {
    border-color: rgba(191, 132, 95, 0.24);
}

.podium-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.rank-medal {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
    flex-shrink: 0;
}

.rank-medal.is-rank-1 {
    border-color: rgba(243, 194, 90, 0.32);
    background: rgba(243, 194, 90, 0.12);
    color: #f3c25a;
}

.rank-medal.is-rank-2 {
    border-color: rgba(211, 221, 238, 0.24);
    background: rgba(211, 221, 238, 0.1);
    color: #d3ddee;
}

.rank-medal.is-rank-3 {
    border-color: rgba(208, 154, 116, 0.24);
    background: rgba(208, 154, 116, 0.1);
    color: #d09a74;
}

.podium-place {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.podium-name {
    font-size: 1.32rem;
    line-height: 1.2;
    word-break: break-word;
}

.podium-metrics {
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.podium-footer {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
}

.ranking-empty {
    padding: 2rem 1.2rem;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.ranking-empty p {
    margin: 0;
    color: var(--muted);
}

.ranking-table-shell {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.02);
}

.ranking-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
    padding: 0.95rem 1rem;
    text-align: left;
}

.ranking-table thead th {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ranking-table tbody td {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.ranking-row {
    transition: background-color 0.2s ease;
}

.ranking-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ranking-row.is-rank-1 {
    background:
        linear-gradient(90deg, rgba(48, 79, 158, 0.18), rgba(48, 79, 158, 0));
}

.ranking-row.is-rank-2 {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.ranking-row.is-rank-3 {
    background:
        linear-gradient(90deg, rgba(208, 154, 116, 0.1), rgba(208, 154, 116, 0));
}

.ranking-position {
    min-width: 86px;
}

.rank-number {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 800;
}

.ranking-name-cell {
    min-width: 180px;
}

.ranking-name {
    color: #fff;
    font-size: 1rem;
}

.ranking-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.ranking-summary {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.pagination-link {
    min-width: 44px;
    padding: 0.72rem 0.9rem;
}

.pagination-link.is-disabled {
    pointer-events: none;
    opacity: 0.42;
}

.guides-admin-bar,
.guides-toolbar,
.guide-card-meta,
.guide-card-footer,
.guide-article-meta,
.category-item-footer,
.editor-upload-actions,
.guide-sort-tabs {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.guides-admin-bar,
.guides-toolbar,
.category-item-footer {
    justify-content: space-between;
}

.guide-filters-card {
    padding-top: 1.5rem;
}

.guide-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1 1 540px;
}

.guide-sort-tabs {
    justify-content: flex-end;
}

.guide-chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.guide-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.guide-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 100, 196, 0.34);
    color: #fff;
}

.guide-chip.is-active {
    background: var(--accent);
    border-color: rgba(84, 122, 222, 0.65);
    color: #fff;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.guide-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.guide-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, rgba(48, 79, 158, 0.18), rgba(11, 13, 19, 0.8));
    overflow: hidden;
}

.guide-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(7, 9, 14, 0.72));
    pointer-events: none;
}

.guide-cover img,
.guide-article-cover img,
.guide-cover-preview img,
.guide-inline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-cover-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(141, 175, 255, 0.88);
    font-size: 2rem;
}

.guide-card-body {
    display: grid;
    gap: 1rem;
    padding: 1.2rem 1.25rem 1.3rem;
    flex: 1;
}

.guide-card-meta {
    justify-content: space-between;
}

.guide-date {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.guide-card h2 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.35;
}

.guide-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.guide-card-footer {
    margin-top: auto;
    justify-content: space-between;
}

.guide-author {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 600;
}

.guide-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.guide-read-more i {
    color: var(--accent);
}

.guide-empty-state {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding: 2.2rem 1.4rem;
    text-align: center;
}

.guide-empty-state.compact {
    justify-items: flex-start;
    padding: 1rem 0 0;
    text-align: left;
}

.guide-empty-state h2,
.guide-empty-state h3 {
    margin: 0;
}

.guide-empty-state p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}

.guide-detail-layout,
.editor-layout,
.category-layout {
    display: grid;
    gap: 1.2rem;
    align-items: start;
}

.guide-detail-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.72fr);
}

.editor-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.category-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.guide-article-card {
    padding: 0;
    overflow: hidden;
}

.guide-article-cover {
    aspect-ratio: 16 / 7;
    background: linear-gradient(180deg, rgba(48, 79, 158, 0.18), rgba(11, 13, 19, 0.8));
}

.guide-article-meta {
    padding: 1.15rem 1.35rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.guide-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.guide-article-content {
    padding: 1.3rem 1.35rem 1.55rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.guide-article-content h2,
.guide-article-content h3,
.guide-article-content h4 {
    margin: 1.6rem 0 0.8rem;
    color: #fff;
    line-height: 1.28;
    scroll-margin-top: 6rem;
}

.guide-article-content h2:first-child,
.guide-article-content h3:first-child,
.guide-article-content h4:first-child,
.guide-article-content p:first-child {
    margin-top: 0;
}

.guide-article-content p,
.guide-article-content ul,
.guide-article-content ol,
.guide-article-content blockquote,
.guide-article-content pre,
.guide-table-shell {
    margin: 0 0 1rem;
}

.guide-article-content ul,
.guide-article-content ol {
    padding-left: 1.35rem;
}

.guide-article-content li {
    margin-bottom: 0.45rem;
}

.guide-article-content a {
    color: #8dafff;
    font-weight: 600;
}

.guide-article-content strong {
    color: #fff;
}

.guide-article-content code {
    padding: 0.15rem 0.4rem;
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.08);
    color: #d8e4ff;
    font-size: 0.92em;
}

.guide-code {
    overflow-x: auto;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: #12161f;
}

.guide-code code {
    padding: 0;
    background: none;
    display: block;
    color: rgba(255, 255, 255, 0.86);
    white-space: pre;
}

.guide-inline-image {
    display: block;
    height: auto;
    max-height: 520px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
}

.guide-table-shell {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.02);
}

.guide-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.guide-table th,
.guide-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-table th {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guide-side-card {
    overflow: visible;
}

.guide-toc-card {
    position: sticky;
    top: 1rem;
}

.guide-toc {
    display: grid;
    gap: 0.55rem;
}

.guide-toc-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
}

.guide-toc-link.level-3 {
    padding-left: 1rem;
    font-size: 0.9rem;
}

.editor-panel,
.editor-sidebar,
.guide-sidebar {
    align-self: start;
}

.guide-cover-preview {
    min-height: 0;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 0.15rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.guide-cover-preview img {
    width: 100%;
    max-height: 260px;
}

.editor-upload-box {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.03);
}

.editor-upload-box strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.editor-upload-box p {
    margin: 0;
    color: var(--muted);
}

.editor-preview-meta {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.editor-preview-meta strong {
    font-size: 1.15rem;
}

.editor-preview-meta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.guide-article-preview {
    max-height: 720px;
    overflow: auto;
    padding: 0;
}

.guide-content-textarea {
    min-height: 460px;
    resize: vertical;
    line-height: 1.68;
}

.category-list {
    display: grid;
    gap: 1rem;
}

.category-item {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.03);
}

.category-item-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.field-span {
    grid-column: 1 / -1;
}

.markdown-empty {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #0a0c12;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto auto;
    gap: 1rem 2rem;
    align-items: center;
    padding: 1.4rem 0 1.65rem;
}

.footer-branding p,
.footer-links a,
.footer-copy span {
    color: var(--muted);
}

.footer-branding p {
    margin: 0.25rem 0 0;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .store-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-confidence-strip,
    .store-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-admin-grid {
        grid-template-columns: 1fr;
    }

    .launcher-sessions-page .store-admin-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-product-hero,
    .store-orders-grid,
    .store-order-search-form {
        grid-template-columns: 1fr;
    }

    .store-plan-recommended,
    .store-plan-recommended:hover {
        transform: none;
    }

    .content-grid,
    .account-grid,
    .store-layout,
    .actions-grid,
    .info-grid,
    .stat-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .status-text {
        margin-right: 24px;
    }

    .discord-text {
        margin-left: 24px;
    }

    .welcome-card-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .ranking-podium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .service-grid,
    .form-grid.two-columns,
    .launcher-session-filter,
    .launcher-sessions-page .store-admin-dashboard,
    .store-admin-dashboard,
    .store-admin-grid .form-grid,
    .store-choice-grid {
        grid-template-columns: 1fr;
    }

    .status-box-container,
    .discord-box-container {
        display: none;
    }

    .logo-ds-flex {
        min-height: 250px;
    }

    .top-container {
        margin-top: -58px;
    }

    .ranking-podium {
        grid-template-columns: 1fr;
    }

    .ranking-toolbar,
    .ranking-search {
        align-items: stretch;
    }

    .ranking-search {
        width: 100%;
        margin-left: 0;
    }

    .ranking-search-group {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 340px;
    }

    .top-nav {
        justify-content: flex-start;
        gap: 0.65rem 1rem;
    }

    .nav-link {
        font-size: 0.96rem;
    }

    .logo-ds-flex {
        min-height: 200px;
    }

    .brand-logo {
        width: 160px;
    }

    .server-clock {
        margin-top: 0.55rem;
        padding: 0.52rem 0.8rem;
    }

    .server-clock strong {
        font-size: 1.05rem;
    }

    .welcome-title {
        font-size: 1.65rem;
    }

    .welcome-text {
        font-size: 0.98rem;
    }

    .welcome-actions,
    .form-actions,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .card {
        padding: 1.2rem 1.1rem;
    }

    .ranking-tabs,
    .pagination-links {
        width: 100%;
    }

    .ranking-tab,
    .pagination-link {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .ranking-table {
        min-width: 820px;
    }

    .ranking-pagination {
        align-items: stretch;
    }
}

@media (max-width: 1180px) {
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-detail-layout,
    .editor-layout,
    .category-layout {
        grid-template-columns: 1fr;
    }

    .guide-toc-card {
        position: static;
    }
}

@media (max-width: 920px) {
    .guides-toolbar,
    .guide-search-form,
    .guide-sort-tabs,
    .guides-admin-bar {
        align-items: stretch;
    }

    .guide-sort-tabs,
    .guide-search-form {
        width: 100%;
    }

    .guide-sort-tabs .ranking-tab {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .guide-grid,
    .category-item-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .store-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-trust-points {
        justify-content: flex-start;
        min-width: 0;
    }

    .store-products-grid,
    .store-benefit-grid,
    .store-product-benefits,
    .store-confidence-strip,
    .store-faq-grid {
        grid-template-columns: 1fr;
    }

    .store-plan-top,
    .store-plan-heading,
    .store-plan-price {
        min-height: 0;
    }

    .guide-chip-bar,
    .guide-card-footer,
    .guide-card-meta,
    .guide-article-meta,
    .category-item-footer,
    .editor-upload-actions {
        align-items: stretch;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-chip,
    .guide-read-more,
    .guide-author {
        width: 100%;
    }

    .guide-read-more {
        justify-content: space-between;
    }

    .code-admin-row {
        flex-direction: column;
    }

    .code-admin-row em {
        text-align: left;
    }

    .code-admin-inline-form,
    .code-admin-inline-form .button {
        width: 100%;
    }

    .guide-table {
        min-width: 560px;
    }
}
