:root {
    --void: #0a0a0d;
    --surface: #131318;
    --surface-raised: #1b1b22;
    --surface-line: rgba(255, 255, 255, 0.08);
    --text: #f2f1ee;
    --text-dim: #9a99a6;
    --text-faint: #65646f;
    --brand: #8b5cf6;
    --brand-dim: rgba(139, 92, 246, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(1200px 600px at 15% -10%, rgba(139, 92, 246, 0.08), transparent 60%),
        radial-gradient(1000px 500px at 85% 0%, rgba(180, 93, 255, 0.06), transparent 55%),
        var(--void);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1,
h2,
h3,
.display {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--brand);
    color: #100b09;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width:640px) {
    .wrap {
        padding: 0 18px;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px) saturate(140%);
    background: rgba(10, 10, 13, 0.72);
    border-bottom: 1px solid var(--surface-line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    letter-spacing: 0.03em;
}

.logo .mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed';
    font-weight: 800;
    color: #100b09;
    font-size: 16px;
    box-shadow: 0 0 22px rgba(139, 92, 246, 0.45);
    flex-shrink: 0;
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.primary a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s var(--ease);
}

nav.primary a:hover {
    color: var(--text);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text);
    color: #100b09;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    white-space: nowrap;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

@media (max-width:820px) {
    nav.primary a.nav-link {
        display: none;
    }
}

.hero {
    padding: 88px 0 64px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 56px 0 48px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 12px var(--brand);
}

.hero h1 {
    font-size: clamp(46px, 7vw, 84px);
    line-height: 0.96;
}

.hero h1 .accent {
    color: var(--brand);
}

.hero p.lead {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.65;
    max-width: 480px;
    margin-top: 22px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #a78bfa);
    color: #150b08;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(139, 92, 246, 0.4);
}

.btn-ghost {
    background: var(--surface-raised);
    color: var(--text);
    border: 1px solid var(--surface-line);
}

.btn-ghost:hover {
    background: #212129;
    transform: translateY(-2px);
}

.showcase {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--surface-raised), var(--surface));
    border: 1px solid var(--surface-line);
    padding: 26px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.showcase:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(500px 260px at 30% 20%, rgba(139, 92, 246, 0.16), transparent 60%);
}

.showcase-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 16px;
}

.showcase-label .live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
}

.showcase-label .live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

.slot-frame {
    position: relative;
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.05), transparent 70%);
    overflow: hidden;
}

#showcase-art {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--brand);
    opacity: 0.9;
    z-index: 2;
}

.corner.tl {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 6px;
}

.corner.tr {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
    border-top-right-radius: 6px;
}

.corner.bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-bottom-left-radius: 6px;
}

.corner.br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 6px;
}

.showcase-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 18px;
}

.showcase-foot h3 {
    font-size: 26px;
}

.showcase-foot .price {
    font-family: 'JetBrains Mono';
    font-size: 20px;
    color: var(--brand);
}

.section {
    padding: 56px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 42px);
}

.section-head p {
    color: var(--text-dim);
    font-size: 14.5px;
    max-width: 420px;
}

.controls {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
}

.search-box {
    position: relative;
    flex: 1 1 240px;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text);
    padding: 11px 14px 11px 38px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.search-box input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-dim);
}

.search-box svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-faint);
}

.chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text-dim);
    transition: all .2s var(--ease);
    white-space: nowrap;
}

.chip:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.chip.active {
    background: var(--brand);
    color: #160c09;
    border-color: var(--brand);
    font-weight: 600;
}

select.sort {
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    cursor: pointer;
    outline: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px);
    animation: rise .5s var(--ease) forwards;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-6px) scale(1.015);
}

.card:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.card-media {
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--surface-line);
}

.card-media .art {
    width: 56%;
    height: 56%;
    opacity: 0.95;
    transition: transform .35s var(--ease);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.card:hover .card-media .art {
    transform: scale(1.08) rotate(-2deg);
}

.media-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-stack .media-fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s var(--ease), opacity .2s var(--ease);
}

.media-stack .card-video {
    opacity: 0;
}

.media-stack.video-only .card-video {
    opacity: 1;
}

.card:hover .media-stack .card-video,
.card:focus-visible .media-stack .card-video,
.showcase:hover .media-stack .card-video,
.showcase:focus-visible .media-stack .card-video {
    opacity: 1;
}

body.reduce-motion .card:hover .media-stack .card-video,
body.reduce-motion .card:focus-visible .media-stack .card-video,
body.reduce-motion .showcase:hover .media-stack .card-video,
body.reduce-motion .showcase:focus-visible .media-stack .card-video {
    opacity: 0;
}

body.reduce-motion .media-stack.video-only .card-video {
    opacity: 1;
}

.card:hover .media-stack .media-fill,
.showcase:hover .media-stack .media-fill {
    transform: scale(1.08);
}

.low-stock-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    background: var(--brand-dim);
    color: var(--brand);
    border: 1px solid rgba(139, 92, 246, 0.4);
    z-index: 2;
}

.corner-mini {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0.85;
    pointer-events: none;
    border-color: var(--brand);
    z-index: 2;
}

.corner-mini.tl {
    top: 8px;
    left: 8px;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 5px;
}

.corner-mini.br {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 5px;
}

.card-body {
    padding: 16px 16px 18px;
}

.card-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    margin-bottom: 4px;
}

.card-name {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-badge {
    font-family: 'JetBrains Mono';
    font-size: 15px;
    font-weight: 700;
}

.stock-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--surface-raised);
    color: var(--text-dim);
    border: 1px solid var(--surface-line);
}

.stock-pill.unlimited {
    color: #7bd88f;
}

.stock-pill.low {
    color: var(--brand);
    border-color: rgba(139, 92, 246, 0.3);
}

.knife-stock-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.stock-pill.group::before {
    content: 'Grp ';
    opacity: 0.6;
    font-weight: 400;
}

.stock-pill.personal::before {
    content: 'Solo ';
    opacity: 0.6;
    font-weight: 400;
}

.pay-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pay-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    padding: 4px 7px;
    border-radius: 6px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text-dim);
}

.pay-tag svg {
    width: 11px;
    height: 11px;
}

.pay-tag.robux {
    color: var(--brand);
    border-color: rgba(139, 92, 246, 0.35);
}

.hover-panel {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px 16px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 13, 0.97) 30%);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    font-size: 12.5px;
}

.card:hover .hover-panel,
.card:focus-visible .hover-panel {
    transform: translateY(0);
    opacity: 1;
}

.hover-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    color: var(--text-dim);
}

.hover-row b {
    color: var(--text);
    font-family: 'JetBrains Mono';
    font-weight: 600;
}

.hover-robux {
    color: var(--brand);
}

.fee-note {
    font-weight: 400;
    font-size: 10.5px;
    color: var(--text-faint);
    margin-left: 4px;
}

.fee-footnote {
    font-size: 11px;
    color: var(--text-faint);
    margin-top: -8px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 8, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    width: 100%;
    max-width: 1040px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}

.modal-backdrop.open .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

@media (max-width:760px) {
    .modal {
        grid-template-columns: 1fr;
    }
}

.modal-media {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--surface-line);
    min-height: 280px;
}

@media (max-width:760px) {
    .modal-media {
        border-right: none;
        border-bottom: 1px solid var(--surface-line);
    }
}

.modal-media .art {
    width: 64%;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.45));
}

.modal-media-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.modal-art-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.05), transparent 70%);
}

.modal-art-frame .gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.modal-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.modal-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: opacity .2s var(--ease), border-color .2s var(--ease);
    background: var(--surface-raised);
    flex-shrink: 0;
}

.modal-thumb img,
.modal-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.modal-thumb:hover {
    opacity: 0.9;
}

.modal-thumb.active {
    border-color: var(--brand);
    opacity: 1;
}

.gallery-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-video-wrap video.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    cursor: pointer;
}

.cvc-big-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 6, 8, 0.28);
    cursor: pointer;
    transition: opacity .2s var(--ease), background .2s var(--ease);
}

.cvc-big-play:hover {
    background: rgba(6, 6, 8, 0.4);
}

.cvc-big-play .cvc-big-play-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(10, 10, 13, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.cvc-big-play svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.custom-video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 26px 12px 10px;
    background: linear-gradient(0deg, rgba(6, 6, 8, 0.92), rgba(6, 6, 8, 0));
}

.cvc-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 6px;
    padding: 0;
}

.cvc-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.cvc-btn svg {
    width: 17px;
    height: 17px;
}

.cvc-time,
.cvc-duration {
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--text-dim);
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
}

.cvc-seek,
.cvc-volume {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    outline: none;
    cursor: pointer;
}

.cvc-seek {
    flex: 1;
}

.cvc-volume {
    width: 64px;
    flex-shrink: 0;
}

.cvc-seek::-webkit-slider-thumb,
.cvc-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}

.cvc-seek::-moz-range-thumb,
.cvc-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    border: none;
    cursor: pointer;
}

@media (max-width:520px) {
    .cvc-volume {
        display: none;
    }
}

.modal-body {
    padding: 30px 30px 30px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.modal-close:hover {
    background: #26262f;
    transform: rotate(90deg);
}

.modal-type {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    margin-bottom: 6px;
}

.modal-name {
    font-size: 30px;
    margin-bottom: 10px;
}

.modal-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.divider {
    height: 1px;
    background: var(--surface-line);
    margin: 20px 0;
}

.breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    border-radius: 10px;
}

.breakdown-row .method {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
}

.breakdown-row .method svg {
    width: 16px;
    height: 16px;
}

.breakdown-row .amt {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 14.5px;
}

.breakdown-row.robux .amt {
    color: var(--brand);
}

.breakdown-row.unavailable {
    opacity: 0.45;
}

.breakdown-row.unavailable .amt {
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 500;
}

.stock-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
}

.stock-line .label {
    font-size: 12px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stock-line .val {
    font-family: 'JetBrains Mono';
    font-weight: 700;
}

.stock-line .val.unlimited {
    color: #7bd88f;
}

.stock-line .val.low {
    color: var(--brand);
}

.buy-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brand), #a78bfa);
    color: #150b08;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    text-decoration: none;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.35);
}

.buy-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-faint);
    margin-top: 10px;
}

footer {
    border-top: 1px solid var(--surface-line);
    padding: 44px 0 36px;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner p {
    color: var(--text-faint);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--text);
}

.empty-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-faint);
}

.empty-state h3 {
    color: var(--text-dim);
    margin-bottom: 8px;
    font-size: 22px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.admin-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--void);
    overflow-y: auto;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-gate-box {
    width: 100%;
    max-width: 360px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.admin-gate-box h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.admin-gate-box p {
    color: var(--text-dim);
    font-size: 13.5px;
    margin-bottom: 18px;
}

.admin-input,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.admin-input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-dim);
}

.admin-error {
    color: var(--brand);
    font-size: 12.5px;
    min-height: 18px;
    margin-top: 10px;
}

.admin-back-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--text-faint);
    font-size: 12.5px;
    text-decoration: none;
}

.admin-back-link:hover {
    color: var(--text-dim);
}

.admin-panel-inner {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-topbar h2 {
    font-size: 26px;
}

.admin-topbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-note {
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--text-dim);
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.admin-note code {
    color: var(--brand);
    font-family: 'JetBrains Mono';
    font-size: 11.5px;
}

.admin-status {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text-dim);
}

.admin-status.ok {
    color: #7bd88f;
    border-color: rgba(123, 216, 143, 0.35);
}

.admin-status.err {
    color: var(--brand);
    border-color: rgba(139, 92, 246, 0.4);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--surface-line);
    font-size: 13.5px;
}

.admin-table th {
    color: var(--text-faint);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.stock-adjust {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid var(--surface-line);
    background: var(--surface-raised);
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-btn:hover {
    background: #26262f;
}

.stock-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.stock-val {
    font-family: 'JetBrains Mono';
    min-width: 22px;
    text-align: center;
}

.admin-edit-btn {
    padding: 8px 14px;
    font-size: 12.5px;
}

.admin-edit-box {
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
}

.admin-edit-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-dim);
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.admin-form textarea {
    resize: vertical;
    min-height: 64px;
    font-family: 'JetBrains Mono';
    font-size: 12.5px;
}

.admin-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.admin-textarea {
    width: 100%;
    min-height: 260px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-line);
    color: var(--text);
    border-radius: 10px;
    padding: 12px;
    font-family: 'JetBrains Mono';
    font-size: 11.5px;
    line-height: 1.5;
}

.admin-form-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}