/* Vulboost Admin */

body.admin-page {
    background: #0a0a0b;
}

body.admin-page .navbar {
    background: #0a0a0b;
}

.ax-boot,
.ax-denied {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 90px);
    color: var(--text-3);
    font-size: 28px;
}

.ax-boot[hidden],
.ax-denied[hidden] {
    display: none !important;
}

.ax-page {
    padding: 0;
    min-height: calc(100dvh - 72px);
}

.ax-shell {
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: calc(100dvh - 72px);
}

.ax-panel {
    display: grid;
    grid-template-columns: 260px 1fr;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--line);
    background: #0a0a0b;
    overflow: hidden;
    min-height: calc(100dvh - 72px);
}

/* Sidebar */
.ax-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 16px;
    border-right: 1px solid var(--line);
    background: #0a0a0b;
}

.ax-side-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 12px;
    margin-bottom: 2px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-3);
}

.ax-side-brand i {
    color: var(--text-3);
    font-size: 13px;
}

.ax-side-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ax-side-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--text-2);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.18s var(--ease);
}

.ax-side-item i {
    width: 16px;
    text-align: center;
    color: var(--text-3);
    font-size: 14px;
    flex-shrink: 0;
}

.ax-side-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ax-side-copy strong {
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
}

.ax-side-copy small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-3);
    line-height: 1.2;
}

.ax-side-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.ax-side-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line);
    color: #fff;
}

.ax-side-item.active i {
    color: var(--green);
}

/* Main */
.ax-main {
    padding: 24px 32px 40px;
    min-width: 0;
    background: #0a0a0b;
}

.ax-view {
    display: none;
    opacity: 0;
}

.ax-view.active {
    display: block;
    animation: axViewIn 0.24s var(--ease) forwards;
}

@keyframes axViewIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade utilities */
.ax-fade {
    transition:
        opacity 0.22s var(--ease),
        transform 0.22s var(--ease),
        max-height 0.28s var(--ease),
        max-width 0.28s var(--ease),
        margin 0.22s var(--ease),
        padding 0.22s var(--ease);
}

.ax-fade.ax-is-hidden {
    opacity: 0 !important;
    transform: translateY(-6px);
    pointer-events: none !important;
}

.ax-fade[hidden]:not(.ax-is-hidden) {
    display: none !important;
}

.ax-limit.ax-fade {
    max-width: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.ax-limit.ax-fade.ax-is-hidden {
    max-width: 0;
    margin: 0;
    padding: 0;
    gap: 0;
    border: none;
}

.ax-limit[hidden] {
    display: none !important;
}

.ax-zone-picker.ax-fade.ax-is-hidden {
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.ax-sheet.ax-fade {
    max-height: 520px;
    overflow: hidden;
}

.ax-sheet.ax-fade.ax-is-hidden {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(-8px);
}

.ax-sheet[hidden] {
    display: none !important;
}

#admUploadZoneSection.ax-fade.ax-is-hidden {
    max-height: 0;
    overflow: hidden;
    margin: 0;
}

.ax-cta.ax-swap-out {
    opacity: 0;
    transform: translateY(4px);
}

.ax-cta.ax-swap-in {
    animation: axBtnIn 0.22s var(--ease) forwards;
}

@keyframes axBtnIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ax-stack.ax-swap-out {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.14s var(--ease), transform 0.14s var(--ease);
}

.ax-stack.ax-swap-in {
    animation: axViewIn 0.22s var(--ease) forwards;
}

/* Top bar */
.ax-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ax-top-search {
    flex-wrap: nowrap;
}

.ax-top-end {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ax-stat {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    padding: 7px 12px;
    border-radius: 10px;
    background: #0a0a0b;
    border: 1px solid var(--line);
}

.ax-stat.is-warn {
    color: #ffc766;
    border-color: rgba(255, 199, 102, 0.2);
}

/* Buttons */
.ax-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: var(--green);
    color: #04210f;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s var(--ease), opacity 0.18s var(--ease), transform 0.18s var(--ease);
    white-space: nowrap;
}

.ax-cta:hover {
    background: var(--green-bright);
}

.ax-cta-block {
    width: 100%;
}

.ax-cta-off {
    background: #0a0a0b;
    color: #fff;
    border: 1px solid var(--line);
}

.ax-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.ax-ghost:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.ax-ghost.danger {
    color: #f87171;
}

.ax-tool {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: var(--text-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
    flex-shrink: 0;
}

.ax-tool:hover:not(:disabled) {
    color: #fff;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.ax-tool.on {
    color: #fff;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.05);
}

.ax-tool.danger:hover:not(:disabled) {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.3);
}

.ax-tool:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.ax-rank {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ax-rank .ax-tool {
    width: 30px;
    height: 28px;
    font-size: 10px;
}

/* Inputs */
.ax-input {
    width: 100%;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.2s var(--ease);
}

.ax-input:focus {
    outline: none;
    border-color: var(--line-strong);
}

.ax-search {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0a0a0b;
}

.ax-search:focus-within {
    border-color: var(--line-strong);
}

.ax-search i {
    color: var(--text-3);
    font-size: 14px;
}

.ax-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.ax-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
}

.ax-limit input {
    width: 40px;
    padding: 7px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

/* Zones */
.ax-zone-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.ax-zone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: var(--text-2);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.18s var(--ease);
}

.ax-zone:hover {
    color: #fff;
    border-color: var(--line-strong);
}

.ax-zone.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line-strong);
    color: #fff;
    transform: translateY(-1px);
}

.ax-zone-ic {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 10px;
}

.ax-zone-ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ax-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ax-chip {
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: var(--text-3);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.ax-chip.on {
    color: #fff;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.05);
}

/* Sheet */
.ax-sheet {
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    overflow: hidden;
}

.ax-sheet[hidden] {
    display: none !important;
}

.ax-sheet-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ax-sheet-body {
    padding: 14px 16px 16px;
}

.ax-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ax-form-game .ax-game-uploads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ax-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Uploader */
.ax-uploader {
    position: relative;
    min-height: 150px;
    border-radius: 10px;
    border: 1px dashed var(--line-strong);
    background: #0a0a0b;
    overflow: hidden;
}

.ax-uploader.is-drag {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.ax-uploader-sm {
    min-height: 100px;
}

.ax-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ax-uploader-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: inherit;
    padding: 18px;
    cursor: pointer;
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    font-weight: 600;
}

.ax-uploader-empty i {
    font-size: 22px;
    color: var(--text-3);
}

.ax-uploader-empty small {
    font-size: 11px;
    color: var(--text-3);
}

.ax-uploader-empty[hidden],
.ax-uploader-done[hidden] {
    display: none !important;
}

.ax-uploader-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.ax-uploader-done img {
    max-width: 100%;
    max-height: 110px;
    border-radius: 8px;
    object-fit: contain;
}

.ax-uploader-logo img {
    width: 64px;
    height: 64px;
}

.ax-uploader-wide img {
    width: 100%;
    max-height: 60px;
    object-fit: cover;
}

.ax-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
}

.ax-link:hover {
    color: #fff;
}

/* Games */
.ax-games {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ax-game {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0a0a0b;
}

.ax-game:hover {
    border-color: var(--line-strong);
}

.ax-game.open {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.ax-game.off {
    opacity: 0.5;
}

.ax-game-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #0a0a0b;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.ax-game-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ax-game-ph {
    font-size: 22px;
    color: var(--text-3);
}

.ax-game-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ax-game-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ax-game-slug {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.ax-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    padding: 3px 8px;
    border-radius: 6px;
    background: #0a0a0b;
    border: 1px solid var(--line);
}

.ax-game-tools {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Banners */
.ax-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ax-banner {
    display: grid;
    grid-template-columns: 36px 240px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0a0a0b;
}

.ax-banner:hover {
    border-color: var(--line-strong);
}

.ax-banner.off {
    opacity: 0.55;
}

.ax-banner-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.ax-banner-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    font-family: ui-monospace, monospace;
}

.ax-banner-order .ax-tool {
    width: 30px;
    height: 28px;
    font-size: 10px;
}

.ax-banner-thumb {
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
    border: 1px solid var(--line);
}

.ax-banner-home .ax-banner-thumb {
    height: 82px;
}

.ax-banner-home .ax-banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ax-banner-game .ax-banner-thumb {
    aspect-ratio: 21 / 6;
    height: auto;
}

.ax-banner-game .ax-banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ax-banner-game {
    grid-template-columns: 240px minmax(0, 1fr) auto;
}

.ax-banner-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ax-banner-tools {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Categories */
.ax-cats {
    margin: 0 0 10px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0a0a0b;
}

.ax-cats-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
}

.ax-cats-top strong {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
}

.ax-cats-add {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.ax-cats-add .ax-cta {
    padding: 10px 14px;
}

.ax-cats-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ax-cat {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    align-items: center;
}

.ax-cat.off {
    opacity: 0.5;
}

.ax-cat-empty {
    text-align: center;
    padding: 16px;
    color: var(--text-3);
    font-size: 13px;
}

/* Users */
.ax-users {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ax-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ax-user:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
}

.ax-user-ava {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.ax-user-body {
    flex: 1;
    min-width: 0;
}

.ax-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ax-user-meta {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 1px;
}

.ax-user-banned {
    opacity: 0.72;
    border-color: rgba(255, 69, 58, 0.15);
    background: rgba(255, 69, 58, 0.03);
}

.ax-user-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ax-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    vertical-align: middle;
    margin-left: 4px;
}

.ax-badge-admin {
    color: #8ec5ff;
    background: rgba(56, 132, 255, 0.12);
    border: 1px solid rgba(56, 132, 255, 0.22);
}

.ax-badge-ban {
    color: #ff8f87;
    background: rgba(255, 69, 58, 0.12);
    border: 1px solid rgba(255, 69, 58, 0.22);
}

.ax-badge-seller {
    color: #7ddea0;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.22);
}

.ax-badge-booster {
    color: #8ec5ff;
    background: rgba(74, 158, 255, 0.12);
    border: 1px solid rgba(74, 158, 255, 0.22);
}

.ax-field-input {
    width: 100%;
    margin-top: 4px;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0a0a0b;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.ax-field-input:focus {
    border-color: var(--line-strong);
}

/* Modals */
.ax-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease);
}

.ax-overlay.open {
    opacity: 1;
    visibility: visible;
}

.ax-modal {
    width: 100%;
    max-width: 400px;
    background: #0a0a0b;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.ax-overlay.open .ax-modal {
    transform: none;
    opacity: 1;
}

.ax-modal-sm {
    max-width: 360px;
}

.ax-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ax-modal-head-center {
    justify-content: center;
    margin-bottom: 12px;
}

.ax-modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #050506;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.ax-modal-icon.is-danger {
    color: #ff8f87;
    border-color: rgba(255, 69, 58, 0.22);
    background: rgba(255, 69, 58, 0.06);
}

.ax-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.2px;
}

.ax-modal-title-center {
    text-align: center;
    margin-bottom: 6px;
}

.ax-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    flex-shrink: 0;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.ax-modal-close:hover {
    color: #fff;
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.ax-modal-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-3);
    margin: 0 0 16px;
}

.ax-modal-desc-center {
    text-align: center;
    margin-bottom: 18px;
}

.ax-modal-hint {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    margin: 0 0 6px;
}

.ax-modal-field {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    margin-bottom: 18px;
    transition: border-color 0.2s var(--ease);
}

.ax-modal-field:focus-within {
    border-color: rgba(255, 255, 255, 0.16);
}

.ax-modal-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    outline: none;
}

.ax-modal-input:focus,
.ax-modal-input:focus-visible {
    outline: none;
}

.ax-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 500;
}

.ax-modal-suffix {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    flex-shrink: 0;
    opacity: 0.7;
}

.ax-modal-foot {
    display: flex;
    gap: 8px;
}

.ax-modal-foot .ax-ghost,
.ax-modal-foot .ax-cta {
    flex: 1;
    min-height: 40px;
}

.ax-modal-primary {
    background: #fff;
    color: #0a0a0b;
    border: 1px solid #fff;
}

.ax-modal-primary:hover {
    background: #e6e6e6;
    border-color: #e6e6e6;
}

.ax-cta-danger {
    background: rgba(255, 69, 58, 0.1);
    color: #ff8f87;
    border: 1px solid rgba(255, 69, 58, 0.24);
}

.ax-cta-danger:hover {
    background: rgba(255, 69, 58, 0.16);
    border-color: rgba(255, 69, 58, 0.34);
}

.ax-you {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    padding: 5px 10px;
    border-radius: 8px;
    background: #0a0a0b;
    border: 1px solid var(--line);
}

/* Empty */
.ax-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px dashed var(--line);
    background: #0a0a0b;
}

.ax-empty i {
    font-size: 28px;
    color: var(--text-3);
}

.ax-empty p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
}

.ax-more {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/* Toast */
.ax-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(12px);
    padding: 11px 18px;
    border-radius: 10px;
    background: #0a0a0b;
    border: 1px solid var(--line-strong);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 1100;
}

.ax-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .ax-panel {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ax-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 10px;
    }

    .ax-side-brand {
        display: none;
    }

    .ax-side-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
    }

    .ax-side-item {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .ax-side-copy small {
        display: none;
    }

    .ax-main {
        padding: 14px;
    }

    .ax-game {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
    }

    .ax-game-tools {
        grid-column: 1 / -1;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .ax-banner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ax-banner-order {
        flex-direction: row;
        justify-content: flex-start;
    }

    .ax-banner-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .ax-banner-tools {
        flex-direction: row;
    }

    .ax-form-row,
    .ax-form-game .ax-game-uploads {
        grid-template-columns: 1fr;
    }

    .ax-cat {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .ax-limit span {
        display: none;
    }

    .ax-top {
        flex-direction: column;
        align-items: stretch;
    }

    .ax-top-end {
        justify-content: space-between;
    }
}
