:root {
    --bg: #04030d;
    --panel: rgba(12, 10, 24, 0.94);
    --panel-soft: rgba(21, 16, 40, 0.94);
    --line: rgba(131, 102, 255, 0.18);
    --text: #f7f4ff;
    --muted: #c3bddb;
    --green: #bf74ff;
    --green-soft: rgba(191, 116, 255, 0.14);
    --green-line: rgba(93, 222, 255, 0.32);
    --cyan: #57e6ff;
    --pink: #ff4fc3;
    --gold: #ff9f43;
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

html {
    font-size: clamp(15px, 0.18vw + 14.3px, 17px);
    -webkit-text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at 18% 52%, rgba(255, 159, 67, 0.1), transparent 20%),
        radial-gradient(circle at 78% 30%, rgba(87, 230, 255, 0.1), transparent 22%),
        radial-gradient(circle at 50% 8%, rgba(191, 116, 255, 0.14), transparent 18%),
        linear-gradient(180deg, #03030a 0%, #070611 48%, #090416 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

.wrap {
    width: min(1440px, calc(100% - clamp(1rem, 4vw, 2rem)));
    margin: 0 auto;
    min-width: 0;
}

.page-shell {
    padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.site-header {
    padding-top: 1.5rem;
}

.site-header-shell {
    display: grid;
    gap: 1rem;
}

.header-mobile-logo {
    display: none;
    width: fit-content;
    margin: 0 auto;
}

.nav-shell,
.site-footer {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 15, 34, 0.98), rgba(9, 8, 19, 0.98));
    box-shadow: var(--shadow);
}

.nav-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.header-card {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-color: rgba(255, 255, 255, 0.1);
    background: #1e1e1e;
    box-shadow: none;
    padding: 1.35rem 1.6rem;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.header-brand-desktop {
    flex: 0 0 auto;
}

.brand-logo-image {
    display: block;
    width: min(320px, 100%);
    height: auto;
    object-fit: contain;
    filter: none;
}

.header-logo-image {
    width: min(291px, 100%);
}

.header-nav-links {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-width: 0;
}

.header-nav-links.is-empty {
    min-height: 1px;
}

.header-nav-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    font-weight: 800;
    transition: color 0.18s ease;
}

.header-nav-links a:hover,
.header-nav-links a:focus-visible {
    color: #fff;
}

.header-nav-links a.is-active,
.header-mobile-menu-panel a.is-active {
    color: #fff;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.header-card.is-guest .header-actions {
    margin-left: auto;
}

.header-mobile-menu {
    position: relative;
    display: none;
}

.header-mobile-menu summary {
    list-style: none;
}

.header-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.header-mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    cursor: pointer;
}

.header-mobile-menu-toggle svg {
    width: 1.45rem;
    height: 1.45rem;
}

.header-mobile-menu-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 220px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(25, 25, 31, 0.98), rgba(12, 12, 18, 0.98));
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 60;
}

.header-mobile-menu-panel a {
    padding: 0.95rem 1rem;
    color: #f3efff;
    font-weight: 700;
}

.header-mobile-menu-panel a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.header-login-button,
.header-queue-button {
    min-height: 40px;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #423f3f;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(153, 153, 153, 0.2) 100%), rgba(0, 0, 0, 0.8);
    box-shadow: none;
}

.brand-mark {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 38%, #bc6cff 68%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: skew(-14deg);
    text-shadow: 0 0 18px rgba(255, 79, 195, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.brand-text strong,
.brand-text small {
    background: linear-gradient(90deg, #ffe3ff 0%, #f08cff 45%, #74e8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.brand-text strong {
    font-size: 2.5rem;
}

.brand-text small {
    font-size: 1.15rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ddd8f3;
    font-weight: 700;
}

.profile-menu {
    position: relative;
}

.profile-menu summary {
    list-style: none;
}

.profile-menu summary::-webkit-details-marker {
    display: none;
}

.profile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 2px solid rgba(191, 116, 255, 0.5);
    border-radius: 999px;
    background: rgba(31, 22, 54, 0.96);
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.16s ease;
}

.profile-toggle:hover,
.profile-toggle:focus-visible {
    border-color: rgba(191, 116, 255, 0.85);
}

.profile-avatar,
.profile-page-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}

.profile-avatar.fallback,
.profile-page-avatar.fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: white;
    font-weight: 900;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 0.9rem);
    right: 0;
    min-width: 220px;
    border: 1px solid rgba(126, 219, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(11, 10, 22, 0.99), rgba(8, 7, 16, 0.99));
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 40;
}

.profile-dropdown strong,
.profile-dropdown a {
    display: block;
    padding: 1rem 1.1rem;
}

.profile-dropdown strong {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-dropdown a {
    color: white;
}

.profile-dropdown a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(24, 18, 44, 0.92);
    color: white;
    font-weight: 800;
}

.button {
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 24px rgba(184, 104, 255, 0.26);
}

.button.outline,
.steam-button {
    background: rgba(20, 22, 40, 0.92);
    color: white;
    border-color: rgba(126, 219, 255, 0.25);
}

.disabled-button {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.centered {
    justify-content: center;
}

.panel,
.image-panel,
.login-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
    box-shadow: var(--shadow);
}

.panel {
    padding: 2rem;
    min-width: 0;
}

@media (max-width: 980px) {
    .nav-shell {
        gap: 0.9rem;
    }

    .panel,
    .image-panel,
    .login-panel {
        padding: 1.45rem;
        border-radius: 22px;
    }

    .actions {
        gap: 0.7rem;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(1440px, calc(100% - 1rem));
    }

    .panel,
    .image-panel,
    .login-panel {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .button,
    .nav-button {
        width: 100%;
        justify-content: center;
    }

    .actions {
        width: 100%;
    }
}

.home-shell {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.homev2-hero {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 1.5rem;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.homev2-hero-copy {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
}

.homev2-hero-copy h1 {
    margin: 0.45rem 0 1rem;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.92;
    max-width: 780px;
}

.homev2-hero-copy p {
    max-width: 760px;
    font-size: 1.05rem;
}

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

.homev2-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.homev2-trust-row span {
    padding: 0.58rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    font-weight: 700;
}

.homev2-hero-side {
    position: relative;
    min-height: 620px;
    padding: 2rem;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 22% 22%, rgba(255, 111, 192, 0.16), transparent 24%),
        radial-gradient(circle at 78% 28%, rgba(89, 228, 255, 0.16), transparent 24%),
        radial-gradient(circle at 56% 72%, rgba(162, 103, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(11, 9, 23, 0.98), rgba(18, 13, 40, 0.98));
}

.homev2-status-card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 1.55rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 9, 21, 0.74);
    backdrop-filter: blur(18px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.homev2-status-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.homev2-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff6185;
    box-shadow: 0 0 16px rgba(255, 97, 133, 0.38);
}

.homev2-status-dot.online {
    background: #89ef54;
    box-shadow: 0 0 18px rgba(137, 239, 84, 0.48);
}

.homev2-status-card h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
}

.homev2-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.homev2-stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.homev2-stat span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.homev2-stat strong {
    color: #fff;
    font-size: 1.25rem;
}

.homev2-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.9;
}

.homev2-glow-a {
    left: 10%;
    top: 16%;
    width: 150px;
    height: 150px;
    background: rgba(255, 114, 192, 0.24);
}

.homev2-glow-b {
    right: 12%;
    bottom: 18%;
    width: 180px;
    height: 180px;
    background: rgba(89, 228, 255, 0.16);
}

.homev2-strip,
.homev2-grid,
.homev2-sub-grid,
.homev2-app-grid {
    display: grid;
    gap: 1.5rem;
}

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

.homev2-strip-card {
    min-height: 220px;
    background:
        radial-gradient(circle at top right, rgba(181, 110, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.homev2-strip-card h3,
.homev2-app-card h3 {
    margin: 0.35rem 0 0.8rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

.homev2-grid {
    grid-template-columns: 1fr 0.92fr;
}

.homev2-about,
.homev2-portal {
    min-height: 100%;
}

.homev2-feature-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.35rem 0 1.6rem;
}

.homev2-feature {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.homev2-feature strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #fff;
}

.homev2-feature span {
    color: var(--muted);
    line-height: 1.6;
}

.homev2-portal {
    background:
        radial-gradient(circle at top right, rgba(89, 228, 255, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.homev2-board {
    display: grid;
    gap: 0;
    margin-top: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.homev2-board-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.homev2-board-row:last-child {
    border-bottom: 0;
}

.homev2-board-row span {
    color: var(--muted);
}

.homev2-board-row strong {
    color: #fff;
    text-align: right;
}

.homev2-section-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
}

.homev2-section-intro h2 {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.homev2-section-intro p {
    margin: 0;
    max-width: 760px;
}

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

.homev2-tier-card {
    min-height: 560px;
}

.homev2-tier-inner {
    min-height: 560px;
}

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

.homev2-app-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.homev2-app-card .button {
    margin-top: auto;
}

.homev2-cta {
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(181, 110, 255, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.homev2-cta h2 {
    margin: 0.35rem auto 0.85rem;
    max-width: 920px;
    font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.homev2-cta p {
    max-width: 820px;
    margin: 0 auto 1.25rem;
}

.landing-hero,
.dashboard-grid,
.content-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.home-hero,
.home-overview-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.home-hero {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
}

.home-overview-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
}

.home-hero-copy {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.4rem 2.5rem 2.6rem 3rem;
}

.home-hero-copy h1 {
    margin: 0 0 1.25rem;
    max-width: 760px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.94;
}

.home-hero-copy p {
    max-width: 720px;
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0 0;
}

.home-trust-row span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    font-weight: 700;
}

.home-live-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.65rem 0;
}

.home-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(138, 86, 255, 0.22);
    background: linear-gradient(180deg, rgba(47, 21, 82, 0.46), rgba(13, 18, 42, 0.55));
    font-weight: 700;
}

.home-live-pill.muted {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.home-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff5d8f;
    box-shadow: 0 0 16px rgba(255, 93, 143, 0.34);
}

.home-live-dot.online {
    background: #83f24d;
    box-shadow: 0 0 18px rgba(131, 242, 77, 0.44);
}

.home-restart-copy {
    margin-top: 1.1rem;
}

.home-hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 121, 194, 0.16), transparent 24%),
        radial-gradient(circle at 82% 28%, rgba(97, 226, 255, 0.18), transparent 24%),
        radial-gradient(circle at 55% 72%, rgba(164, 103, 255, 0.2), transparent 26%),
        linear-gradient(145deg, rgba(11, 9, 23, 0.98), rgba(19, 13, 41, 0.97));
    box-shadow: var(--shadow);
}

.home-hero-visual-inner {
    position: relative;
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 620px;
    padding: 2rem;
}

.home-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.88;
}

.home-orb-one {
    top: 14%;
    left: 11%;
    width: 130px;
    height: 130px;
    background: rgba(255, 115, 190, 0.34);
}

.home-orb-two {
    top: 20%;
    right: 12%;
    width: 150px;
    height: 150px;
    background: rgba(88, 228, 255, 0.28);
}

.home-orb-three {
    bottom: 18%;
    left: 26%;
    width: 190px;
    height: 190px;
    background: rgba(143, 93, 255, 0.24);
}

.home-brand-mark,
.home-profile-avatar {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 190px;
    border-radius: 36px;
}

.home-brand-mark {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 7rem;
    font-weight: 900;
    background:
        linear-gradient(180deg, rgba(255, 106, 197, 0.92), rgba(152, 96, 255, 0.92) 55%, rgba(89, 228, 255, 0.76) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 22px 40px rgba(0, 0, 0, 0.28);
}

.home-profile-avatar {
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.28),
        0 0 34px rgba(164, 103, 255, 0.28);
}

.home-hero-card {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 1;
    width: min(420px, calc(100% - 4rem));
    padding: 1.4rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(9, 8, 18, 0.76);
    backdrop-filter: blur(18px);
}

.home-hero-card h2 {
    margin: 0.35rem 0 0.8rem;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.home-hero-card p {
    margin: 0;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.home-hero-stats div {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.home-hero-stats strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 1.4rem;
}

.home-hero-stats span {
    color: var(--muted);
    font-size: 0.9rem;
}

.home-about-panel {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-feature-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.4rem 0 1.7rem;
}

.home-feature-item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.home-feature-item strong {
    color: #fff;
    font-size: 1rem;
}

.home-feature-item span {
    color: var(--muted);
    line-height: 1.55;
}

.home-image-panel {
    position: relative;
    min-height: 540px;
    padding: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 112, 197, 0.16), transparent 24%),
        radial-gradient(circle at 80% 26%, rgba(89, 228, 255, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(11, 9, 22, 1), rgba(8, 7, 17, 1));
}

.home-image-copy {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: min(560px, calc(100% - 4rem));
    z-index: 1;
}

.home-image-copy h3 {
    margin: 0.45rem 0 0;
    max-width: 520px;
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    line-height: 1.1;
}

.home-scene-card {
    position: absolute;
    z-index: 1;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(20, 18, 38, 0.92), rgba(10, 11, 24, 0.92));
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.home-scene-card strong {
    display: block;
    color: #fff;
}

.home-scene-card p {
    margin: 0.55rem 0 0;
    color: rgba(238, 238, 238, 0.78);
}

.home-scene-card-main {
    top: 2rem;
    left: 2rem;
    width: min(350px, calc(100% - 18rem));
    padding: 1.3rem 1.35rem;
}

.home-scene-card-side {
    top: 5.2rem;
    right: 2rem;
    width: min(230px, calc(100% - 4rem));
    padding: 1.1rem 1.15rem;
    background:
        linear-gradient(180deg, rgba(26, 17, 50, 0.94), rgba(11, 10, 23, 0.94));
}

.home-scene-badge {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(191, 116, 255, 0.16);
    border: 1px solid rgba(191, 116, 255, 0.24);
    color: #f1e7ff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-scene-badge.muted {
    background: rgba(87, 230, 255, 0.12);
    border-color: rgba(87, 230, 255, 0.22);
}

.home-scene-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.home-scene-metrics div {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.home-scene-metrics span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.home-scene-grid {
    position: absolute;
    inset: 32% 2rem 2rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(135deg, rgba(17, 22, 48, 0.82), rgba(10, 12, 28, 0.94)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 100% 58px, 82px 100%;
    opacity: 0.92;
}

.home-about-panel .actions {
    margin-top: auto;
}

@media (max-width: 1200px) {
    .home-overview-grid {
        grid-template-columns: 1fr;
    }

    .home-image-panel {
        min-height: 500px;
    }

    .home-scene-card-main {
        width: min(360px, calc(100% - 14rem));
    }
}

.home-pillar-grid,
.home-command-grid,
.home-bottom-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.home-command-card {
    min-height: 220px;
    background:
        radial-gradient(circle at top right, rgba(89, 228, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.home-command-card h3 {
    margin: 0.35rem 0 0.8rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

.home-command-card p {
    margin: 0;
}

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

.home-pillar-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
        radial-gradient(circle at top right, rgba(179, 112, 255, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.home-pillar-card h3 {
    margin: 0.35rem 0 0.8rem;
    font-size: 1.55rem;
}

.home-pillar-card p {
    margin: 0;
}

.home-applications-shell {
    margin-top: 1.5rem;
}

.home-applications-copy {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-applications-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.home-applications-copy p {
    max-width: 900px;
    margin: 0;
    color: rgba(238, 238, 238, 0.85);
}

.home-application-list {
    margin-top: 0;
}

.home-application-card {
    min-height: 100%;
}

.home-bottom-grid {
    grid-template-columns: 1.45fr 0.85fr;
    align-items: stretch;
}

.home-cta-panel {
    text-align: center;
}

.home-status-board {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.home-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-status-row:last-child {
    border-bottom: 0;
}

.home-status-row span {
    color: var(--muted);
}

.home-status-row strong {
    color: #fff;
    text-align: right;
}

.support-shell,
.support-form-shell,
.support-ticket-shell {
    margin-top: 1.5rem;
}

.support-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.support-head h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.support-head p {
    margin: 0.65rem 0 0;
    max-width: 760px;
}

.support-table-wrap {
    margin-top: 0.5rem;
}

.support-table th,
.support-table td {
    vertical-align: middle;
}

.support-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

.support-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.support-status-open {
    color: #9deb6c;
    border-color: rgba(124, 255, 86, 0.24);
    background: rgba(63, 128, 26, 0.18);
}

.support-status-closed,
.support-status-resolved {
    color: #d8c9ff;
    border-color: rgba(184, 129, 255, 0.22);
    background: rgba(102, 47, 171, 0.16);
}

.support-open-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.support-open-link:hover {
    color: #d7c7ff;
}

.support-form {
    display: grid;
    gap: 1rem;
}

.support-form label {
    display: grid;
    gap: 0.55rem;
}

.support-form label span {
    color: #fff;
    font-weight: 800;
}

.support-form input,
.support-form textarea,
.support-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 9, 18, 0.92);
    color: #fff;
}

.support-form textarea {
    min-height: 220px;
    resize: vertical;
}

.support-form select option {
    background: #151225;
    color: #fff;
}

.support-ticket-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.support-ticket-meta-card {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.support-ticket-meta-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.support-ticket-meta-card strong {
    color: #fff;
}

.support-ticket-body {
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.support-thread,
.support-message-list,
.support-reply-form {
    margin-top: 1.25rem;
}

.support-message-list {
    display: grid;
    gap: 0.9rem;
}

.support-message {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.support-message-staff {
    border-color: rgba(182, 115, 255, 0.18);
    background: linear-gradient(180deg, rgba(77, 29, 129, 0.18), rgba(255, 255, 255, 0.03));
}

.support-message-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.support-message-head strong {
    color: #fff;
}

.support-message-head span {
    color: var(--muted);
    font-size: 0.9rem;
}

.support-message-body {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.permission-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.permission-hints span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-hero,
.dashboard-grid {
    grid-template-columns: 1.1fr 1fr;
}

.landing-copy {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2rem 2rem 3rem;
}

.landing-copy h1,
.welcome-panel h1,
.login-panel h1 {
    font-size: clamp(2.2rem, 6vw, 4.7rem);
    line-height: 0.95;
    margin: 0 0 1.25rem;
    max-width: 720px;
}

.landing-copy p,
.panel p,
.muted-label {
    color: var(--muted);
    line-height: 1.6;
}

.landing-badge,
.image-panel {
    position: relative;
    overflow: hidden;
}

.landing-badge::before,
.image-one,
.image-two {
    content: "";
    position: absolute;
    inset: 0;
}

.landing-badge {
    min-height: 540px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 24% 60%, rgba(255, 159, 67, 0.14), transparent 22%),
        radial-gradient(circle at 74% 58%, rgba(87, 230, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 34%, rgba(191, 116, 255, 0.2), transparent 22%),
        linear-gradient(135deg, rgba(7, 6, 16, 0.88), rgba(31, 15, 58, 0.42));
}

.badge-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 18rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff8d45 0%, #ff4fc3 28%, #b46cff 56%, #62ecff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: skew(-12deg) rotate(-10deg);
    text-shadow:
        0 0 20px rgba(255, 79, 195, 0.2),
        0 0 38px rgba(98, 236, 255, 0.18);
}

.status-strip,
.queue-summary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.mini-status,
.queue-metric,
.status-card,
.subscription-card {
    border: 1px solid var(--green-line);
    background: linear-gradient(180deg, rgba(43, 19, 76, 0.22), rgba(13, 20, 49, 0.16));
    border-radius: 18px;
}

.mini-status {
    padding: 0.8rem 1rem;
    font-weight: 800;
}

.welcome-panel {
    min-height: 670px;
}

.eyebrow,
.section-tag,
.status-pill {
    color: var(--green);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.subscription-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    margin: 2rem 0 1.25rem;
    background: rgba(15, 12, 30, 0.94);
    border-color: rgba(117, 213, 255, 0.12);
}

.subscription-icon {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(255, 79, 195, 0.14), rgba(98, 236, 255, 0.14));
}

.status-panel {
    display: grid;
    gap: 1.5rem;
}

.status-card {
    padding: 2rem;
    min-height: 245px;
}

.status-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.content-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;
}

.image-panel {
    min-height: 360px;
    background: linear-gradient(180deg, rgba(11, 9, 22, 1), rgba(8, 7, 17, 1));
}

.image-block {
    position: absolute;
    border-radius: 22px;
}

.image-one {
    inset: 2rem auto 2rem 2rem;
    width: 28%;
    background:
        linear-gradient(180deg, rgba(255, 125, 87, 0.85), rgba(255, 47, 172, 0.82) 52%, rgba(87, 19, 139, 0.84)),
        radial-gradient(circle at 50% 50%, transparent 35%, rgba(255, 255, 255, 0.16) 36%, transparent 37%);
}

.image-two {
    inset: 2rem 2rem 2rem 34%;
    background:
        linear-gradient(135deg, rgba(18, 22, 52, 0.7), rgba(10, 16, 40, 0.95)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 2px, transparent 2px);
    background-size: auto, 100% 90px, 120px 100%;
}

.login-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 280px);
}

.login-panel {
    width: min(900px, 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.application-page-shell {
    display: grid;
    place-items: center;
    margin-top: 1.5rem;
}

.application-page-panel {
    width: min(980px, 100%);
    padding: 2rem;
}

.application-page-panel h1 {
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.application-page-summary {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.application-form-page {
    display: grid;
    gap: 1rem;
}

.application-question-card {
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.application-form-page label {
    display: grid;
    gap: 0.55rem;
}

.application-form-page label span {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
}

.application-question-card small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    line-height: 1.55;
}

.application-form-page input,
.application-form-page textarea,
.application-form-page select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 9, 18, 0.92);
    color: #ffffff;
    font: inherit;
}

.application-form-page textarea {
    min-height: 170px;
    resize: vertical;
}

.application-form-page select option {
    background: #151225;
    color: #ffffff;
}

.application-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stripe-element {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.application-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.application-card {
    display: grid;
    gap: 1rem;
    align-content: start;
    min-height: 0;
}

.application-card h2 {
    margin: 0;
}

.application-card p {
    margin: 0;
}

.application-card .muted-detail {
    color: var(--muted);
    line-height: 1.6;
}

.application-card .actions {
    margin-top: 0.25rem;
}

.rule-card {
    position: relative;
    min-height: 220px;
    padding-top: 4rem;
}

.rule-card-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--cyan);
}

.rule-card h2 {
    margin-bottom: 0.75rem;
}

.steam-disclaimer {
    max-width: 720px;
    margin: 1.25rem auto 1.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 159, 67, 0.3);
    background: rgba(255, 159, 67, 0.08);
    color: #ffd39b;
    line-height: 1.6;
}

.narrow-panel {
    max-width: 760px;
    margin: 1.5rem auto 0;
}

.account-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.account-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
}

.queue-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.queue-media,
.queue-stage-card,
.queue-table-panel {
    overflow: hidden;
}

.queue-media {
    min-height: 335px;
}

.queue-media-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.queue-media-head h2,
.queue-stage h2,
.queue-table-head h2 {
    margin: 0;
}

.queue-broadcast {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    box-shadow: 0 0 18px rgba(184, 104, 255, 0.45);
}

.queue-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.35rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.queue-tab {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 700;
}

.queue-tab.active {
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: white;
}

.queue-track {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.queue-cover {
    min-height: 150px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 5rem;
    font-weight: 900;
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 159, 67, 0.28), transparent 26%),
        linear-gradient(180deg, rgba(255, 79, 195, 0.8), rgba(98, 236, 255, 0.34) 72%, rgba(17, 19, 40, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 16px 40px rgba(0, 0, 0, 0.26);
}

.queue-track-copy h3 {
    margin: 0 0 0.4rem;
    font-size: 2rem;
}

.queue-track-copy p {
    margin: 0 0 0.8rem;
}

.queue-track-copy strong {
    display: inline-block;
    font-size: 1.15rem;
}

.queue-radio {
    margin-bottom: 1.2rem;
    padding: 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.queue-radio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.queue-radio-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.queue-radio-tab {
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
}

.queue-radio-tab.active {
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: white;
}

.queue-radio-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.1rem;
    align-items: center;
}

.queue-radio-cover-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
}

.queue-radio-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.queue-radio-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 42%),
        linear-gradient(135deg, rgba(255, 109, 199, 0.82) 0%, rgba(184, 104, 255, 0.8) 52%, rgba(89, 228, 255, 0.74) 100%);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(184, 104, 255, 0.26);
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    backdrop-filter: blur(16px);
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.queue-radio-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.36),
        0 0 36px rgba(184, 104, 255, 0.36);
    filter: brightness(1.05);
}

.queue-radio-play::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(calc(-50% + 4px), -50%);
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid rgba(255, 255, 255, 0.96);
}

.queue-radio-play.is-playing::before {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 28px;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 7px, transparent 7px 15px, rgba(255, 255, 255, 0.96) 15px 22px);
}

.queue-radio-copy h3 {
    margin: 0 0 0.9rem;
    font-size: 2rem;
}

.queue-radio-artist {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.queue-radio-artist-image {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
}

.queue-radio-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.queue-radio-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 109, 199, 0.22) 0%, rgba(184, 104, 255, 0.18) 52%, rgba(89, 228, 255, 0.14) 100%),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 24px rgba(0, 0, 0, 0.18);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.queue-radio-icon:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(184, 104, 255, 0.16);
}

.queue-radio-icon::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-right: 0;
}

.queue-radio-icon::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 58%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.92);
    border-right: 2px solid rgba(255, 255, 255, 0.92);
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-radius: 50%;
}

.queue-radio-icon.is-muted::after {
    width: 18px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 97, 97, 0.96);
    transform: translate(-50%, -50%) rotate(-40deg);
}

.queue-radio-slider {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    background:
        linear-gradient(90deg, rgba(255, 109, 199, 0.88) 0%, rgba(184, 104, 255, 0.84) 48%, rgba(89, 228, 255, 0.84) 100%);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.queue-radio-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 109, 199, 0.88) 0%, rgba(184, 104, 255, 0.84) 48%, rgba(89, 228, 255, 0.84) 100%);
}

.queue-radio-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -5px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55) 30%, rgba(184, 104, 255, 0.92) 100%);
    box-shadow:
        0 0 0 4px rgba(184, 104, 255, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.24);
}

.queue-radio-slider::-moz-range-track {
    height: 8px;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 109, 199, 0.88) 0%, rgba(184, 104, 255, 0.84) 48%, rgba(89, 228, 255, 0.84) 100%);
}

.queue-radio-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55) 30%, rgba(184, 104, 255, 0.92) 100%);
    box-shadow:
        0 0 0 4px rgba(184, 104, 255, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.24);
}

.queue-radio-player {
    display: none;
}

.queue-volume {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.queue-server-state,
.queue-status-banner {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.queue-server-state {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.queue-status-banner {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-weight: 700;
}

.queue-server-state.state-online,
.queue-status-banner.state-online {
    border-color: rgba(118, 255, 177, 0.34);
    background: rgba(49, 129, 85, 0.2);
}

.queue-server-state.state-restarting,
.queue-status-banner.state-restarting {
    border-color: rgba(255, 179, 71, 0.34);
    background: rgba(128, 74, 24, 0.22);
}

.queue-server-state.state-starting_up,
.queue-status-banner.state-starting_up {
    border-color: rgba(120, 203, 255, 0.34);
    background: rgba(25, 73, 112, 0.22);
}

.queue-server-state.state-offline,
.queue-status-banner.state-offline {
    border-color: rgba(255, 93, 93, 0.34);
    background: rgba(122, 22, 22, 0.2);
}

.queue-stage {
    padding-top: 0.2rem;
}

.queue-stage h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: clamp(2rem, 2.2vw, 2.8rem);
}

.queue-stage-card {
    border: 1px solid rgba(144, 101, 255, 0.32);
    border-radius: 22px;
    padding: 1.8rem;
    background: linear-gradient(180deg, rgba(15, 14, 28, 0.98), rgba(11, 13, 23, 0.98));
    box-shadow: var(--shadow);
}

.queue-stage-card.selectable,
.queue-stage-card.ready,
.queue-stage-card.active {
    position: relative;
}

.queue-stage-card.ready::before,
.queue-stage-card.active::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: radial-gradient(circle at bottom center, rgba(133, 255, 133, 0.14), transparent 58%);
    pointer-events: none;
}

.queue-stage-inner {
    padding: 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(27, 27, 27, 0.92);
}

.queue-form {
    margin: 0;
    display: block;
}

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

.queue-select-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(30, 30, 30, 0.92);
    color: white;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.queue-form:hover .queue-select-card:not(:disabled),
.queue-form:focus-within .queue-select-card:not(:disabled),
.queue-select-card:hover:not(:disabled) {
    transform: none;
    border-color: rgba(149, 215, 43, 0.92);
    background: rgba(24, 38, 10, 0.95);
    box-shadow: inset 0 0 0 1px rgba(149, 215, 43, 0.18);
}

.queue-select-card:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.queue-select-card.is-selected {
    border-color: rgba(149, 215, 43, 0.82);
    background: rgba(24, 38, 10, 0.88);
    box-shadow: inset 0 0 0 1px rgba(149, 215, 43, 0.14);
}

.queue-select-card.is-active {
    border-color: rgba(149, 215, 43, 0.62);
    background: rgba(24, 38, 10, 0.78);
}

.queue-select-title {
    font-size: 1.45rem;
    font-weight: 800;
}

.queue-select-meta {
    color: var(--muted);
}

.queue-stage-header,
.queue-ready-top,
.queue-stage-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.queue-stage-header,
.queue-ready-top {
    color: var(--muted);
    text-transform: uppercase;
}

.queue-position-box {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 1.4rem 0;
    padding: 1.6rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.queue-position-box strong {
    font-size: 5rem;
    line-height: 1;
    background: linear-gradient(180deg, #d98cff 0%, #6ef0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.queue-position-box span {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.queue-stage-footer span,
.queue-ready-top span {
    display: block;
    color: var(--muted);
}

.queue-stage-footer strong,
.queue-ready-top strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    color: white;
}

.queue-stage-card h3 {
    margin: 1.8rem 0;
    text-align: center;
    font-size: clamp(2.3rem, 3vw, 3.6rem);
    text-transform: uppercase;
}

.queue-stage-card-state {
    text-align: center;
}

.queue-state-copy {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: var(--muted);
    line-height: 1.7;
}

.button.danger {
    background: linear-gradient(180deg, #7a1616 0%, #4a0d10 100%);
    border: 1px solid rgba(255, 93, 93, 0.35);
    box-shadow: none;
}

.ghost-danger {
    min-height: 40px;
    padding: 0.65rem 1rem;
}

.queue-help {
    display: block;
    width: fit-content;
    margin: 1.3rem auto 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.queue-table-panel {
    margin-top: 1.5rem;
}

.queue-table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.queue-access-note {
    color: var(--muted);
    font-weight: 700;
}

.queue-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.queue-metric {
    padding: 1.5rem;
}

.queue-metric strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 2.3rem;
}

.table-wrap {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    word-break: break-word;
    overflow-wrap: anywhere;
}

th {
    color: white;
}

.alert {
    padding: 1rem 1.2rem;
    margin-top: 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.alert.success {
    background: rgba(178, 102, 255, 0.12);
}

.alert.error {
    background: rgba(224, 60, 60, 0.12);
}

.site-footer {
    margin: 2.5rem 0 0;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: #0d0d0d;
    box-shadow: none;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: #a9a1c7;
}

.site-footer .wrap {
    width: min(1440px, calc(100% - 2rem));
}

.footer-shell-v3 {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.45rem 2.2rem 2rem;
}

.footer-left {
    flex: 1 1 0;
    min-width: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 2rem;
    min-width: 420px;
    padding-top: 0.35rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-logo-image {
    display: block;
    width: 291px;
    max-width: 100%;
    height: auto;
    filter: none;
}

.footer-contact {
    margin: 0;
    color: #d4d4d4;
    line-height: 1.5;
    font-size: 0.92rem;
}

.footer-contact a {
    color: #c8f34a;
}

.footer-copy {
    max-width: 34rem;
    margin: 0;
    color: rgba(236, 236, 239, 0.78);
    line-height: 1.7;
}

.footer-disclaimer {
    margin: 0;
    color: rgba(198, 191, 214, 0.78);
}

.footer-disclaimer a {
    color: #ffcf5b;
}

.footer-status-panel {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.78rem;
}

.footer-status-panel h3 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-status-list {
    display: grid;
    gap: 0.7rem;
    max-width: 15.5rem;
}

.footer-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
    min-width: 13rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(154, 201, 47, 0.16);
    background: rgba(27, 39, 10, 0.58);
    box-shadow: none;
    color: #f5f9ee;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-status-chip.is-offline {
    border-color: rgba(255, 96, 96, 0.16);
    background: rgba(58, 16, 16, 0.58);
}

.footer-status-chip.is-restarting,
.footer-status-chip.is-paused {
    border-color: rgba(255, 182, 64, 0.18);
    background: rgba(58, 37, 10, 0.58);
}

.footer-status-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    flex: 0 0 auto;
    background: #8fd11b;
    box-shadow: none;
}

.footer-status-chip.is-offline .footer-status-dot {
    background: #ff6a6a;
    box-shadow: 0 0 16px rgba(255, 106, 106, 0.38);
}

.footer-status-chip.is-restarting .footer-status-dot,
.footer-status-chip.is-paused .footer-status-dot {
    background: #ffc14f;
    box-shadow: 0 0 16px rgba(255, 193, 79, 0.4);
}

.footer-nav-col {
    display: grid;
    gap: 0.5rem;
    padding-top: 0.18rem;
    align-content: start;
    justify-content: start;
}

.footer-nav-col a,
.footer-social-link {
    color: #f0eef5;
    font-weight: 600;
    text-decoration: none;
}

.footer-nav-col a {
    display: block;
    width: fit-content;
    line-height: 1.4;
    color: #f2f2f2;
    font-size: 0.98rem;
    font-weight: 500;
}

.footer-nav-col a:hover,
.footer-social-link:hover {
    color: #ffcf5b;
}

.footer-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social-col {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    justify-content: start;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    color: #f2f2f2;
    font-size: 0.98rem;
    font-weight: 500;
}

.footer-social-link svg {
    display: block;
    width: 1.45rem !important;
    min-width: 1.45rem;
    max-width: 1.45rem;
    height: 1.45rem !important;
    min-height: 1.45rem;
    max-height: 1.45rem;
    color: #fff;
    flex: 0 0 auto;
}

.footer-social-link.is-static {
    cursor: default;
}

.footer-links-list {
    min-width: 170px;
}

.admin-shell {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.admin-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.admin-hero h1,
.admin-section-head h2,
.panel h2 {
    margin-top: 0;
}

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

.admin-stat {
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(126, 219, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.admin-stat span {
    display: block;
    color: var(--muted);
}

.admin-stat strong {
    display: block;
    margin-top: 0.4rem;
    font-size: 2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1.5rem;
}

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

.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1rem;
    min-width: 0;
}

.package-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(98, 236, 255, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 79, 195, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(17, 15, 31, 0.98), rgba(9, 8, 18, 0.98));
    min-width: 0;
}

.package-card-title {
    margin-left: 0;
    color: white;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    word-break: break-word;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.package-features span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.package-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.package-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 1rem;
}

.package-footer strong {
    display: block;
    margin-top: 0.25rem;
    font-size: clamp(1.9rem, 5vw, 2.6rem);
    text-transform: uppercase;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.admin-inline-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-inline-actions form {
    margin: 0;
}

.admin-inline-actions .button {
    width: auto;
    min-width: 0;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form label {
    display: grid;
    gap: 0.45rem;
}

.admin-form label span {
    color: var(--muted);
    font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font: inherit;
}

.admin-form select {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(24, 20, 42, 0.98), rgba(12, 11, 24, 0.98));
    color: #ffffff;
}

.admin-form select option,
.admin-form select optgroup {
    background: #151225;
    color: #ffffff;
}

.admin-panel-shell {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: start;
    min-width: 0;
}

.admin-sidebar-v2 {
    position: sticky;
    top: 1.5rem;
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.admin-side-brand-v2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #ff836a;
    letter-spacing: 0.02em;
}

.admin-side-group-title,
.admin-side-link-v2,
.admin-side-footer-v2 {
    border: 1px solid rgba(146, 106, 255, 0.16);
    border-radius: 14px;
    background: rgba(14, 13, 26, 0.96);
}

.admin-side-group-title {
    padding: 0.8rem 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, rgba(255, 132, 90, 0.28), rgba(129, 91, 255, 0.18));
}

.admin-side-nav-v2 {
    display: grid;
    gap: 0.7rem;
}

.admin-side-link-v2 {
    display: block;
    padding: 0.95rem 1rem;
    color: #d8d2ec;
    font-weight: 700;
}

.admin-side-link-v2.is-active {
    border-color: rgba(183, 120, 255, 0.42);
    background: linear-gradient(135deg, rgba(255, 129, 93, 0.18), rgba(115, 83, 255, 0.18));
    box-shadow: inset 0 0 0 1px rgba(190, 129, 255, 0.16);
}

.admin-side-footer-v2 {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.admin-side-footer-v2 img,
.admin-side-footer-v2 span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    object-fit: cover;
}

.admin-side-footer-v2 span {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: white;
    font-weight: 900;
}

.admin-main-v2 {
    display: grid;
    gap: 1.5rem;
    min-width: 0;
}

.admin-topbar-v2 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-topbar-v2 h1 {
    margin: 0 0 0.35rem;
    font-size: clamp(2.6rem, 4vw, 4rem);
}

.admin-topbar-v2 p {
    margin: 0;
    color: var(--muted);
}

.admin-top-actions-v2 {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 1280px) {
    .admin-panel-shell {
        grid-template-columns: 132px 1fr;
        gap: 1rem;
    }

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

    .admin-topbar-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-topbar-v2 h1 {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

    .admin-side-link-v2 {
        padding: 0.85rem 0.9rem;
    }

    .homev2-hero,
    .homev2-grid,
    .homev2-sub-grid,
    .homev2-app-grid {
        grid-template-columns: 1fr;
    }
}

.admin-overview-v2,
.admin-sections-v2 {
    display: grid;
    gap: 1.5rem;
}

.admin-card-stack {
    display: grid;
    gap: 1.5rem;
    min-width: 0;
}

.admin-split-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 1.5rem;
    align-items: start;
    min-width: 0;
}

.admin-split-layout > *,
.admin-panel-shell > *,
.admin-main-v2 > *,
.admin-card-stack > * {
    min-width: 0;
}

.admin-welcome-v2 {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-welcome-avatar-v2 {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(180, 123, 255, 0.3);
}

.admin-welcome-avatar-v2.fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff6dc7 0%, #b868ff 52%, #59e4ff 100%);
    color: white;
    font-weight: 900;
}

.admin-welcome-v2 h2 {
    margin: 0 0 0.3rem;
    font-size: 3rem;
}

.admin-pill-row-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.admin-pill-row-v2 span,
.admin-card-tag-v2 {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #efe9ff;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.admin-quick-actions-v2 {
    display: grid;
    gap: 0.75rem;
    justify-items: end;
}

.admin-stats-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.admin-mini-card-v2 {
    min-height: 180px;
}

.admin-mini-card-v2 h3 {
    margin-bottom: 0.6rem;
}

.admin-mini-card-v2 strong {
    display: block;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.admin-sections-v2 > section,
.admin-sections-v2 > .panel {
    margin-top: 0;
}

.admin-grid,
.admin-grid.lower {
    align-items: start;
}

.admin-hero {
    background: linear-gradient(90deg, rgba(74, 39, 30, 0.75), rgba(26, 22, 58, 0.92));
}

.admin-card,
.admin-mini-card-v2,
.admin-hero {
    border-radius: 22px;
}

.profile-shell {
    margin-top: 1.5rem;
}

.profile-panel {
    padding: 2rem;
    border-radius: 24px;
}

.profile-hero {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.profile-user {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.profile-page-avatar {
    width: 82px;
    height: 82px;
    border: 1px solid rgba(151, 108, 255, 0.4);
    box-shadow: 0 0 24px rgba(151, 108, 255, 0.12);
}

.profile-user h1 {
    margin: 0 0 0.4rem;
    font-size: clamp(2.7rem, 4vw, 4.25rem);
    line-height: 0.95;
    color: #a9ff35;
}

.profile-user p {
    margin: 0;
    color: var(--muted);
}

.profile-subscribe {
    min-width: 290px;
    display: grid;
    gap: 0.9rem;
    justify-items: start;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.profile-details {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 2rem;
}

.profile-detail-row {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-detail-row:last-child {
    border-bottom: 0;
}

.profile-detail-row span {
    display: block;
    margin-bottom: 0.45rem;
    color: #938cab;
    font-weight: 700;
}

.profile-detail-row strong {
    display: block;
    font-size: 1.05rem;
}

.profile-side {
    display: grid;
    gap: 1rem;
}

.profile-side-card {
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(126, 219, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.profile-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.profile-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(151, 108, 255, 0.24);
    background: rgba(108, 57, 170, 0.16);
    color: white;
    font-weight: 700;
}

.profile-pill.muted {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.profile-action-stack {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-divider {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-row input {
    width: auto;
}

.checkout-fieldset {
    margin: 0;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.checkout-fieldset legend {
    padding: 0 0.4rem;
    color: #f1eff7;
    font-weight: 700;
}

.radio-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.radio-row input {
    width: auto;
}

.saved-card-list,
.profile-card-stack {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.saved-card-option,
.profile-subscription-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.profile-subscription-copy {
    display: grid;
    gap: 0.35rem;
}

.subscription-countdown {
    color: #bcaefc;
    font-size: 0.88rem;
    font-weight: 700;
}

.profile-saved-card {
    margin-top: 0;
}

.small-button {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
}

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

.checkout-summary div {
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.checkout-summary span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-summary small {
    display: block;
    margin-top: 0.45rem;
}

.coupon-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.coupon-row input {
    flex: 1 1 auto;
}

.subscriptions-hero {
    margin-bottom: 1.25rem;
}

.subscriptions-copy {
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.subscriptions-copy h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    text-transform: uppercase;
}

.subscriptions-copy p {
    margin: 0;
    max-width: 740px;
    color: rgba(238, 238, 238, 0.85);
}

.subscription-carousel-shell {
    overflow: hidden;
}

.subscription-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 340px);
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.4rem 0 1.2rem;
    scroll-snap-type: x proximity;
}

.subscription-carousel::-webkit-scrollbar {
    height: 10px;
}

.subscription-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.subscription-tier-card {
    position: relative;
    min-height: 620px;
    padding: 2px;
    clip-path: polygon(0 11%, 16% 0, 100% 0, 100% 100%, 0 100%);
    scroll-snap-align: start;
}

.subscription-tier-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 620px;
    padding: 2rem 1.5rem 1.6rem;
    clip-path: polygon(0 11%, 16% 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(26, 22, 42, 0.96), rgba(11, 8, 20, 0.98));
}

.subscription-tier-glow {
    position: absolute;
    inset: 0;
    opacity: 0.88;
}

.subscription-tier-name {
    margin-left: 3rem;
    text-align: center;
    color: #fff;
    font-family: Oswald, Impact, sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.subscription-tier-features {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.subscription-tier-features span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.subscription-tier-footer {
    margin-top: auto;
    display: grid;
    gap: 1.2rem;
}

.subscription-tier-price span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: Oswald, Impact, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}

.subscription-tier-price strong {
    display: block;
    color: #fff;
    font-family: Oswald, Impact, sans-serif;
    font-size: 2.8rem;
    text-transform: uppercase;
}

.subscription-tier-price em {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.subscription-tier-button {
    justify-content: center;
}

.tier-silver {
    background: linear-gradient(180deg, #868686 0%, #424040 100%);
}

.tier-silver .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.36), transparent 30%);
}

.tier-gold {
    background: linear-gradient(180deg, #d4b03b 0%, #665416 100%);
}

.tier-gold .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(255, 233, 132, 0.48), transparent 30%);
}

.tier-emerald {
    background: linear-gradient(180deg, #58cf83 0%, #2a6f4f 100%);
}

.tier-emerald .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(120, 255, 211, 0.42), transparent 30%);
}

.tier-platinum {
    background: linear-gradient(180deg, #a2b4bc 0%, #243036 100%);
}

.tier-platinum .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(219, 236, 243, 0.36), transparent 30%);
}

.tier-diamond {
    background: linear-gradient(180deg, #4f98b0 0%, #0b2730 100%);
}

.tier-diamond .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(126, 180, 199, 0.4), transparent 30%);
}

.tier-onyx {
    background: linear-gradient(180deg, #7f42f2 0%, #16092f 100%);
}

.tier-onyx .subscription-tier-glow {
    background: radial-gradient(circle at 18% 12%, rgba(181, 122, 255, 0.42), transparent 30%);
}

@media (max-width: 980px) {
    .admin-panel-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar-v2 {
        position: static;
    }

    .admin-topbar-v2,
    .admin-welcome-v2,
    .admin-hero,
    .admin-quick-actions-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .landing-hero,
    .dashboard-grid,
    .content-grid,
    .home-hero,
    .home-overview-grid,
    .home-command-grid,
    .home-pillar-grid,
    .home-bottom-grid,
    .homev2-strip,
    .queue-summary,
    .queue-layout,
    .admin-hero,
    .admin-grid,
    .admin-grid.lower,
    .rules-grid,
    .application-list {
        grid-template-columns: 1fr;
    }

    .nav-shell,
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header-shell {
        gap: 0.75rem;
    }

    .header-mobile-logo {
        display: inline-flex;
    }

    .header-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.1rem;
    }

    .header-brand-desktop {
        display: none;
    }

    .header-nav-links {
        display: none;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .header-mobile-menu {
        display: block;
    }

    .header-queue-button {
        padding-inline: 1.1rem;
    }

    .site-footer .wrap {
        width: min(1440px, calc(100% - 1rem));
    }

    .footer-shell-v3 {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.7rem;
    }

    .footer-right {
        min-width: 0;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }

    .footer-links-list {
        min-width: 0;
    }

    .footer-status-chip {
        min-width: 0;
        width: 100%;
    }

    .landing-copy,
    .landing-badge,
    .home-hero-copy,
    .home-hero-visual,
    .homev2-hero-copy,
    .homev2-hero-side {
        min-height: 360px;
        padding: 2rem;
    }

    .home-hero-visual-inner {
        min-height: 360px;
        padding: 1.5rem;
    }

    .home-hero-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1.5rem;
    }

    .home-hero-stats {
        grid-template-columns: 1fr;
    }

    .home-brand-mark,
    .home-profile-avatar {
        width: 140px;
        height: 140px;
        border-radius: 28px;
    }

    .home-brand-mark {
        font-size: 5rem;
    }

    .home-image-copy {
        left: 2rem;
        right: 2rem;
        max-width: none;
    }

    .home-scene-card-main,
    .home-scene-card-side {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
    }

    .home-scene-card-main {
        margin: 1.5rem 1.5rem 0;
    }

    .home-scene-card-side {
        margin: 1rem 1.5rem 0;
    }

    .home-scene-grid {
        position: relative;
        inset: auto;
        margin: 1rem 1.5rem 8rem;
        min-height: 180px;
    }

    .homev2-hero-copy h1 {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
    }

    .homev2-stat-grid,
    .homev2-strip,
    .homev2-grid,
    .homev2-sub-grid,
    .homev2-app-grid {
        grid-template-columns: 1fr;
    }

    .homev2-section-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-ticket-meta {
        grid-template-columns: 1fr;
    }

    .brand-text strong {
        font-size: 2rem;
    }

    .brand-text small {
        font-size: 0.95rem;
    }

    .brand-logo-image {
        width: min(250px, 100%);
    }

    .header-mobile-logo .brand-logo-image {
        width: min(291px, 100%);
    }

    .queue-track {
        grid-template-columns: 1fr;
    }

    .queue-radio-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .queue-radio-body {
        grid-template-columns: 1fr;
    }

    .queue-table-head,
    .queue-stage-header,
    .queue-ready-top,
    .queue-stage-footer,
    .admin-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats,
    .package-grid,
    .profile-grid {
        grid-template-columns: 1fr;
    }

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

    .profile-details {
        border-right: 0;
        padding-right: 0;
    }

    .checkout-summary {
        grid-template-columns: 1fr;
    }

    .coupon-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.admin-permission-groups {
    display: grid;
    gap: 1rem;
}

.admin-permission-group {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(126, 86, 214, 0.22);
    border-radius: 1rem;
    background: rgba(15, 13, 28, 0.72);
}

.admin-permission-group legend {
    padding: 0 0.4rem;
    font-weight: 700;
    color: var(--text);
}

.landing-v3 {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.landing-v3-hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.5rem;
    padding: 0;
    overflow: hidden;
}

.landing-v3-hero-copy,
.landing-v3-hero-visual {
    min-height: 660px;
}

.landing-v3-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.8rem 3rem 3rem;
}

.landing-v3-hero-copy h1 {
    margin: 0.35rem 0 1.15rem;
    max-width: 760px;
    font-family: Oswald, Impact, sans-serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.landing-v3-hero-copy p {
    max-width: 720px;
    font-size: 1.05rem;
    color: rgba(238, 238, 238, 0.86);
}

.landing-v3-actions {
    margin-top: 1.8rem;
}

.landing-v3-live-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.landing-v3-live-pill {
    min-width: 172px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.landing-v3-live-pill strong {
    display: block;
    margin-top: 0.22rem;
    color: #fff;
    font-size: 0.96rem;
}

.landing-v3-live-label {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-v3-hero-visual {
    position: relative;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at 82% 20%, rgba(87, 230, 255, 0.14), transparent 20%),
        radial-gradient(circle at 14% 22%, rgba(255, 159, 67, 0.18), transparent 26%),
        radial-gradient(circle at 55% 74%, rgba(191, 116, 255, 0.2), transparent 26%),
        linear-gradient(145deg, rgba(9, 7, 18, 1), rgba(19, 11, 38, 0.96));
}

.landing-v3-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.9;
}

.landing-v3-orb-a {
    top: 9%;
    left: 10%;
    width: 160px;
    height: 160px;
    background: rgba(255, 159, 67, 0.26);
}

.landing-v3-orb-b {
    top: 24%;
    right: 12%;
    width: 180px;
    height: 180px;
    background: rgba(87, 230, 255, 0.2);
}

.landing-v3-orb-c {
    bottom: 12%;
    left: 28%;
    width: 220px;
    height: 220px;
    background: rgba(191, 116, 255, 0.16);
}

.landing-v3-logo-card,
.landing-v3-status-board,
.landing-v3-player-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 8, 18, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
}

.landing-v3-logo-card {
    display: grid;
    justify-items: center;
    gap: 1rem;
    width: min(540px, calc(100% - 3rem));
    margin: 1.25rem auto 0;
    padding: 1.8rem 1.6rem 1.55rem;
    border-radius: 30px;
}

.landing-v3-logo-image {
    display: block;
    width: min(360px, 100%);
    height: auto;
    object-fit: contain;
}

.landing-v3-logo-copy {
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    text-align: center;
}

.landing-v3-logo-copy span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.landing-v3-logo-copy strong {
    max-width: 430px;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.45;
}

.landing-v3-player-card {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 22px;
}

.landing-v3-player-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-v3-player-avatar.fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.24), rgba(191, 116, 255, 0.24));
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
}

.landing-v3-player-copy {
    display: grid;
    gap: 0.18rem;
}

.landing-v3-player-copy span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-v3-player-copy strong {
    color: #fff;
    font-size: 1.1rem;
}

.landing-v3-status-board {
    position: absolute;
    right: 2rem;
    left: 2rem;
    bottom: 2rem;
    padding: 1.4rem 1.5rem;
    border-radius: 28px;
}

.landing-v3-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.landing-v3-status-card {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
}

.landing-v3-status-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-v3-status-card strong {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.2;
}

.landing-v3-status-card strong#restartTimer,
.landing-v3-status-card #restartTimer {
    font-size: 1rem;
}

.landing-v3-highlight-grid,
.landing-v3-app-grid {
    display: grid;
    gap: 1.5rem;
}

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

.landing-v3-highlight-card {
    min-height: 220px;
    background:
        radial-gradient(circle at top right, rgba(255, 159, 67, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.landing-v3-highlight-card h3,
.landing-v3-app-card h3 {
    margin: 0.35rem 0 0.85rem;
    font-size: 1.45rem;
    line-height: 1.15;
}

.landing-v3-split {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.5rem;
}

.landing-v3-about-copy {
    display: flex;
    flex-direction: column;
}

.landing-v3-about-copy h2,
.landing-v3-section-head h2,
.landing-v3-final h2 {
    margin: 0.35rem 0 0.9rem;
    font-size: clamp(2.1rem, 4.4vw, 4.4rem);
    line-height: 0.95;
}

.landing-v3-feature-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.5rem 0 1.7rem;
}

.landing-v3-feature-item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.landing-v3-feature-item strong {
    color: #fff;
    font-size: 1rem;
}

.landing-v3-feature-item span {
    color: var(--muted);
}

.landing-v3-showcase {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top left, rgba(87, 230, 255, 0.1), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 159, 67, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.landing-v3-showcase-top h3 {
    margin: 0.35rem 0 0.85rem;
    font-size: 1.7rem;
}

.landing-v3-lane-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.6rem 0 1.8rem;
}

.landing-v3-lane-chip {
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.landing-v3-showcase-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.landing-v3-showcase-bottom div {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.landing-v3-showcase-bottom span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-v3-showcase-bottom strong {
    color: #fff;
    font-size: 1rem;
}

.landing-v3-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.landing-v3-section-head p,
.landing-v3-final p {
    margin: 0;
    max-width: 820px;
    color: rgba(238, 238, 238, 0.82);
}

.landing-v3-tier-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 340px);
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.2rem 0 1.2rem;
    scroll-snap-type: x proximity;
}

.landing-v3-tier-rail::-webkit-scrollbar {
    height: 10px;
}

.landing-v3-tier-rail::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.landing-v3-tier-card {
    scroll-snap-align: start;
}

.landing-v3-app-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-v3-app-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background:
        radial-gradient(circle at top right, rgba(191, 116, 255, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.landing-v3-app-card .button {
    margin-top: auto;
}

.landing-v3-final {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 159, 67, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(16, 12, 30, 0.97), rgba(8, 7, 18, 0.98));
}

.landing-v3-final-copy {
    max-width: 860px;
}

.landing-v3-final-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
}

@media (max-width: 1240px) {
    .landing-v3-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .landing-v3-hero,
    .landing-v3-split,
    .landing-v3-highlight-grid {
        grid-template-columns: 1fr;
    }

    .landing-v3-hero-copy,
    .landing-v3-hero-visual {
        min-height: 420px;
    }

    .landing-v3-hero-copy {
        padding: 2.2rem;
    }

    .landing-v3-logo-card {
        width: min(560px, calc(100% - 2rem));
        margin-top: 4.5rem;
    }

    .landing-v3-status-board {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 1.2rem;
    }

    .landing-v3-player-card {
        top: 1.25rem;
        right: 1.25rem;
    }

    .landing-v3-showcase-bottom,
    .landing-v3-status-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-v3-final {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .landing-v3-hero-copy,
    .landing-v3-hero-visual,
    .landing-v3-about-copy,
    .landing-v3-showcase,
    .landing-v3-final,
    .landing-v3-highlight-card,
    .landing-v3-app-card {
        padding: 1.5rem;
    }

    .landing-v3-hero-copy h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .landing-v3-logo-card {
        width: 100%;
        margin-top: 5rem;
        padding: 1.4rem 1rem 1.2rem;
    }

    .landing-v3-logo-image {
        width: min(280px, 100%);
    }

    .landing-v3-player-card {
        left: 1rem;
        right: 1rem;
        top: 1rem;
    }

    .landing-v3-player-avatar {
        width: 48px;
        height: 48px;
    }

    .landing-v3-status-grid,
    .landing-v3-showcase-bottom,
    .landing-v3-app-grid {
        grid-template-columns: 1fr;
    }

    .landing-v3-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-v3-live-pill {
        width: 100%;
        min-width: 0;
    }

    .landing-v3-tier-rail {
        grid-auto-columns: minmax(280px, 320px);
    }

    .landing-v3-final-actions {
        width: 100%;
    }
}
