@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #08090d;
    --bg-sec: rgba(18, 20, 28, 0.72);
    --bg-card: rgba(255, 255, 255, 0.075);
    --primary: #f5f5f7;
    --primary-hover: #ffffff;
    --accent: #7dd3fc;
    --mint: #86efac;
    --rose: #fb7185;
    --text-main: #f7f7fb;
    --text-sec: #a5adbb;
    --border: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(255, 255, 255, 0.24);
    --radius-sm: 8px;
    --radius-md: 8px;
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.24);
    --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.36);
    --spring: 500ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 220ms cubic-bezier(0.2, 0, 0, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

html,
body,
button,
a,
img,
.leak-card,
.admin-section,
.login-card {
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
}

body {
    background:
        radial-gradient(circle at 18% 4%, rgba(125, 211, 252, 0.22), transparent 28rem),
        radial-gradient(circle at 88% 16%, rgba(251, 113, 133, 0.18), transparent 26rem),
        linear-gradient(135deg, #08090d 0%, #101116 46%, #07080b 100%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

.ambient {
    position: fixed;
    width: 34rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.24;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.ambient-one {
    top: 16vh;
    left: -16rem;
    background: #7dd3fc;
}

.ambient-two {
    right: -18rem;
    bottom: 8vh;
    background: #fb7185;
    animation-delay: -4s;
}

@keyframes floatGlow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(5rem, -3rem, 0) scale(1.12); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(18px) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.36); }
    50% { box-shadow: 0 0 0 14px rgba(125, 211, 252, 0); }
}

.fade-in {
    animation: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px clamp(18px, 4vw, 48px);
    background: rgba(8, 9, 13, 0.62);
    backdrop-filter: blur(22px) saturate(170%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--accent), var(--mint));
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(125, 211, 252, 0.8);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
    color: var(--text-main);
}

.btn i, .search-field i, .stat-item i, .boost-badge i {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary), #dfe4eb);
    color: #090a0e;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.14);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    border-color: var(--border);
    backdrop-filter: blur(18px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.icon-btn {
    width: 42px;
    padding: 0;
}

.compact-btn {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 13px;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 48px) 64px;
    position: relative;
    z-index: 1;
}

.hero-shell {
    min-height: 268px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        radial-gradient(circle at 85% 18%, rgba(134, 239, 172, 0.22), transparent 20rem);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(28px) saturate(160%);
    overflow: hidden;
}

.admin-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 82% 15%, rgba(251, 113, 133, 0.22), transparent 22rem);
}

.hero-copy {
    max-width: 760px;
}

.eyebrow, .panel-label {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-copy h1 {
    font-size: clamp(46px, 8vw, 112px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.hero-copy p {
    max-width: 620px;
    color: var(--text-sec);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-panel {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-self: end;
    width: 100%;
    max-width: 330px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(8, 9, 13, 0.34);
}

.hero-panel strong {
    display: block;
    font-size: 44px;
    line-height: 1;
}

.hero-panel small {
    color: var(--text-sec);
}

.signal-ring {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #071016;
    background: linear-gradient(135deg, var(--accent), var(--mint));
    animation: pulseRing 2.4s ease-in-out infinite;
}

.signal-ring.danger {
    background: linear-gradient(135deg, var(--rose), #fbbf24);
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.search-field {
    flex: 1;
    min-width: 220px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-sec);
    backdrop-filter: blur(18px);
}

.search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 14px;
}

.action-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-sec);
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

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

.empty-state {
    grid-column: 1 / -1;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(22px) saturate(150%);
}

.empty-state h2 {
    font-size: 24px;
    font-weight: 800;
}

.empty-state p {
    max-width: 430px;
    color: var(--text-sec);
}

.leak-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--spring), border-color var(--transition), background var(--transition), box-shadow var(--transition), opacity var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    animation: none;
    backdrop-filter: blur(22px) saturate(155%);
}

.leak-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.105);
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--shadow-hover);
}

.leak-card.is-hidden {
    display: none;
}

.thumb-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition);
}

.leak-card:hover .card-thumb {
    transform: scale(1.08);
    filter: saturate(1.16) contrast(1.04);
}

.card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
}

.badge, .boost-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(125, 211, 252, 0.13);
    color: var(--accent);
    border: 1px solid rgba(125, 211, 252, 0.18);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.boost-badge {
    color: #fef3c7;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.2);
}

.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.25;
}

.card-description {
    color: var(--text-sec);
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    color: var(--text-sec);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.card-meta i, .stat-item i {
    width: 14px;
    height: 14px;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-sec);
    font-size: 13px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 8, 0.68);
    backdrop-filter: blur(18px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: rgba(18, 20, 28, 0.86);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    box-shadow: var(--shadow-hover);
    transform: translateY(18px) scale(0.94);
    transition: transform var(--spring);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    margin-bottom: 22px;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 14px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus {
    border-color: rgba(125, 211, 252, 0.7);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.11);
}

.file-upload-box {
    border: 1px dashed var(--border-hover);
    padding: 24px;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-sec);
    font-size: 13px;
    margin-bottom: 16px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.file-upload-box:hover {
    border-color: var(--accent);
    background: rgba(125, 211, 252, 0.08);
    color: var(--text-main);
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-sec);
}

.feed-page {
    background:
        radial-gradient(circle at 12% 30%, rgba(125, 211, 252, 0.14), transparent 22rem),
        radial-gradient(circle at 88% 18%, rgba(251, 113, 133, 0.16), transparent 28rem),
        radial-gradient(circle at 52% 72%, rgba(134, 239, 172, 0.08), transparent 26rem),
        linear-gradient(135deg, #07080b 0%, #0d0e13 48%, #07080b 100%);
}

.feed-page::before {
    background-image:
        linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
}

.feed-shell {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    padding: 18px 0 72px;
    position: relative;
    z-index: 1;
}

.feed-topbar {
    min-height: 54px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.brand-logo-mini {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    position: relative;
    background:
        radial-gradient(circle at 50% 42%, rgba(125, 211, 252, 0.24), transparent 2.2rem),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(125, 211, 252, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 22px rgba(125, 211, 252, 0.14);
    overflow: hidden;
}

.brand-logo-mini::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 120deg, transparent, rgba(125, 211, 252, 0.28), transparent 38%, rgba(134, 239, 172, 0.22), transparent 70%);
    animation: logoSpin 8s linear infinite;
    opacity: 0.74;
}

.brand-logo-mini img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.4));
}

.brand-logo-mini.tiny {
    width: 24px;
    height: 24px;
    border-radius: 7px;
}

.brand-logo-mini.tiny img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.brand-accent {
    color: var(--accent);
    text-shadow: 0 0 24px rgba(125, 211, 252, 0.55);
}

.feed-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.feed-controls .btn {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
}

.feed-search {
    max-width: 320px;
    height: 38px;
    min-width: 230px;
    background: rgba(255, 255, 255, 0.055);
}

.feed-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.quick-icon,
.avatar-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-main);
    text-decoration: none;
    backdrop-filter: blur(18px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.quick-icon:hover,
.avatar-link:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.12);
}

.quick-icon.active {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(134, 239, 172, 0.9));
    color: #061015;
    box-shadow: 0 14px 34px rgba(125, 211, 252, 0.18);
}

.quick-icon i {
    width: 19px;
    height: 19px;
}

.avatar-link {
    overflow: hidden;
    padding: 0;
}

.avatar-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-masthead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 80% 0%, rgba(125, 211, 252, 0.2), transparent 18rem);
    backdrop-filter: blur(22px) saturate(155%);
}

.feed-masthead h1 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0;
}

.feed-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 700;
}

.feed-stats span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.28);
}

.feed-stats strong {
    color: var(--text-main);
}

.feed-stats i {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.feed-page .leak-card {
    border-color: rgba(125, 211, 252, 0.13);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 90% 0%, rgba(125, 211, 252, 0.18), transparent 8rem);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 16px 42px rgba(0, 0, 0, 0.26);
}

.feed-page .leak-card:hover {
    border-color: rgba(125, 211, 252, 0.34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 34px rgba(125, 211, 252, 0.12);
}

.card-topline {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 9px 0;
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 800;
}

.card-topline span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-topline i {
    width: 13px;
    height: 13px;
    color: var(--text-main);
    opacity: 0.82;
}

.feed-page .thumb-wrap {
    height: 126px;
    margin: 8px 9px 0;
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    position: relative;
}

.expand-chip {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--text-main);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.report-chip {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(251, 113, 133, 0.28);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.38);
    color: var(--rose);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.report-chip:hover,
.expand-chip:hover {
    transform: translateY(-1px) scale(1.04);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-hover);
}

.expand-chip i {
    width: 14px;
    height: 14px;
}

.report-chip i {
    width: 15px;
    height: 15px;
}

.feed-page .card-content {
    padding: 12px 10px 10px;
}

.feed-page .card-header {
    margin-bottom: 8px;
}

.feed-page .badge,
.feed-page .boost-badge {
    padding: 4px 7px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    background: rgba(125, 211, 252, 0.16);
}

.feed-page .card-title {
    font-size: 14px;
    line-height: 1.18;
    margin-bottom: 5px;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-page .card-description {
    font-size: 11px;
    line-height: 1.35;
    min-height: 30px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
}

.feed-page .card-meta {
    font-size: 11px;
    margin-bottom: 12px;
}

.feed-page .card-footer {
    padding-top: 0;
    border-top: 0;
}

.download-btn {
    width: 100%;
    min-height: 36px;
}

/* Compact neon feed pass */
.feed-page {
    --gx-red: #ff1135;
    --gx-red-soft: rgba(255, 17, 53, 0.58);
    --gx-red-deep: rgba(73, 0, 9, 0.88);
    --gx-purple: #9b16e8;
    --gx-purple-soft: rgba(155, 22, 232, 0.58);
    background:
        radial-gradient(circle at 8% 42%, rgba(255, 17, 53, 0.13), transparent 20rem),
        radial-gradient(circle at 84% 18%, rgba(155, 22, 232, 0.18), transparent 18rem),
        radial-gradient(circle at 50% 0%, rgba(255, 17, 53, 0.09), transparent 28rem),
        linear-gradient(135deg, #090003 0%, #170005 48%, #070003 100%);
    padding-bottom: 70px;
}

.feed-page::before {
    background-image:
        linear-gradient(rgba(255, 17, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 17, 53, 0.09) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image:
        radial-gradient(circle at 0% 50%, rgba(0, 0, 0, 0.72), transparent 18rem),
        radial-gradient(circle at 100% 48%, rgba(0, 0, 0, 0.72), transparent 18rem);
}

.feed-page .ambient-one {
    background: #ff1135;
    opacity: 0.18;
}

.feed-page .ambient-two {
    background: #9b16e8;
    opacity: 0.2;
}

.feed-shell {
    width: min(100% - 38px, 1160px);
    padding-top: 16px;
}

.feed-topbar {
    grid-template-columns: 250px minmax(0, 1fr) 250px;
    margin-bottom: 28px;
}

.feed-brand {
    font-size: 26px;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.feed-brand .brand-accent {
    color: var(--gx-red);
    text-shadow: 0 0 22px rgba(255, 17, 53, 0.76);
}

.feed-search,
.feed-controls .btn {
    height: 36px;
    min-height: 36px;
    background: rgba(38, 12, 16, 0.78);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feed-controls .btn-primary {
    background: rgba(45, 16, 20, 0.82);
    color: var(--text-sec);
    box-shadow: none;
}

.feed-controls .btn:hover,
.feed-search:focus-within {
    border-color: rgba(255, 17, 53, 0.42);
    background: rgba(63, 14, 22, 0.9);
}

.feed-nav {
    gap: 14px;
}

.feed-nav .quick-icon {
    width: 38px;
    height: 38px;
    background: transparent;
    border-color: transparent;
    color: #ff5c75;
}

.feed-nav .quick-icon.active {
    color: #ff48e6;
    background: transparent;
    box-shadow: none;
    position: relative;
}

.feed-nav .quick-icon.active::after,
.admin-nav-icon::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: var(--gx-red);
    box-shadow: 0 0 16px rgba(255, 17, 53, 0.8);
}

.admin-nav-icon {
    color: #ff8a1c !important;
    position: relative;
}

.feed-masthead {
    display: none;
}

.feed-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 22px;
}

.feed-page .leak-card {
    position: relative;
    min-height: 268px;
    border: 1px solid rgba(255, 17, 53, 0.42);
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(82, 0, 11, 0.88), rgba(23, 0, 5, 0.96) 58%),
        radial-gradient(circle at 88% 0%, rgba(255, 17, 53, 0.52), transparent 6.5rem);
    box-shadow:
        inset 0 0 0 1px rgba(255, 17, 53, 0.16),
        inset 0 0 38px rgba(255, 17, 53, 0.08),
        0 12px 30px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(255, 17, 53, 0.08);
    overflow: hidden;
}

.feed-page .leak-card:nth-child(5n),
.feed-page .leak-card:nth-child(7n) {
    border-color: rgba(155, 22, 232, 0.58);
    background:
        linear-gradient(145deg, rgba(61, 0, 81, 0.9), rgba(17, 0, 28, 0.96) 58%),
        radial-gradient(circle at 88% 0%, rgba(155, 22, 232, 0.62), transparent 6.5rem);
    box-shadow:
        inset 0 0 0 1px rgba(155, 22, 232, 0.22),
        0 12px 30px rgba(0, 0, 0, 0.42),
        0 0 26px rgba(155, 22, 232, 0.18);
}

.feed-page .leak-card:hover {
    transform: translateY(-5px) scale(1.018);
    border-color: rgba(255, 54, 82, 0.9);
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(255, 17, 53, 0.28);
}

.feed-page .leak-card:nth-child(5n):hover,
.feed-page .leak-card:nth-child(7n):hover {
    border-color: rgba(190, 72, 255, 0.92);
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(155, 22, 232, 0.36);
}

.feed-page .leak-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 17, 53, 0.28);
    border-radius: 4px;
    pointer-events: none;
}

.feed-page .leak-card:nth-child(5n)::before,
.feed-page .leak-card:nth-child(7n)::before {
    border-color: rgba(155, 22, 232, 0.36);
}

.card-topline {
    height: 28px;
    padding: 8px 12px 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    position: relative;
    z-index: 1;
}

.card-topline span {
    min-width: 30px;
    justify-content: center;
}

.card-topline i {
    width: 16px;
    height: 16px;
    padding: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.17);
}

.feed-page .thumb-wrap {
    height: 102px;
    margin: 8px 13px 0;
    border: 0;
    border-radius: 5px;
    background: #1a1718;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.feed-page .card-thumb {
    filter: saturate(1.12) contrast(1.08);
}

.feed-page .card-content {
    padding: 11px 13px 12px;
    position: relative;
    z-index: 1;
}

.title-line {
    min-height: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    margin-bottom: 2px;
}

.feed-page .card-title {
    min-height: 0;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.13;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.feed-page .badge,
.feed-page .boost-badge {
    padding: 4px 7px;
    border: 0;
    border-radius: 3px;
    background: var(--gx-red);
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    box-shadow: 0 0 14px rgba(255, 17, 53, 0.28);
}

.feed-page .leak-card:nth-child(5n) .badge,
.feed-page .leak-card:nth-child(7n) .badge,
.feed-page .leak-card:nth-child(5n) .boost-badge,
.feed-page .leak-card:nth-child(7n) .boost-badge {
    background: var(--gx-purple);
    box-shadow: 0 0 14px rgba(155, 22, 232, 0.32);
}

.feed-page .card-meta {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 700;
}

.feed-page .card-meta i {
    display: none;
}

.feed-page .card-description {
    min-height: 30px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    line-height: 1.32;
}

.feed-page .boost-badge {
    width: fit-content;
    margin-bottom: 8px;
}

.feed-page .card-footer {
    margin-top: auto;
}

.download-btn {
    min-height: 34px;
    border: 0;
    border-radius: 4px;
    background: var(--gx-red);
    color: #ffffff;
    font-size: 11px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 18px rgba(255, 17, 53, 0.24);
}

.feed-page .leak-card:nth-child(5n) .download-btn,
.feed-page .leak-card:nth-child(7n) .download-btn {
    background: var(--gx-purple);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 18px rgba(155, 22, 232, 0.28);
}

.download-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.expand-chip,
.report-chip {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.54);
}

.report-chip {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.1);
}

.report-chip:hover {
    color: #ffffff;
    border-color: rgba(255, 17, 53, 0.55);
    background: rgba(255, 17, 53, 0.3);
}

.feed-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-top: 1px solid rgba(255, 17, 53, 0.34);
    background: rgba(8, 0, 3, 0.88);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.44);
}

.feed-footer .brand-accent {
    color: var(--gx-red);
}

.feed-footer small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.toast-banner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.075);
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(18px);
}

.toast-banner i {
    width: 18px;
    height: 18px;
}

.toast-banner.success {
    border-color: rgba(134, 239, 172, 0.26);
    background: rgba(134, 239, 172, 0.1);
}

.toast-banner.success i {
    color: var(--mint);
}

.toast-banner.error {
    border-color: rgba(251, 113, 133, 0.3);
    background: rgba(251, 113, 133, 0.1);
}

.toast-banner.error i {
    color: var(--rose);
}

.pending-strip {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(20px) saturate(150%);
}

.pending-strip h2 {
    font-size: 20px;
    line-height: 1;
}

.pending-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.pending-list span {
    flex: 0 0 auto;
    max-width: 230px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.28);
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pending-list i {
    width: 14px;
    height: 14px;
    color: #fbbf24;
    flex: 0 0 auto;
}

.admin-page {
    background:
        radial-gradient(circle at 16% 16%, rgba(125, 211, 252, 0.16), transparent 28rem),
        radial-gradient(circle at 88% 22%, rgba(251, 113, 133, 0.13), transparent 26rem),
        linear-gradient(135deg, #07080b 0%, #101116 48%, #07080b 100%);
}

.admin-shell {
    width: min(100% - 36px, 1320px);
    margin: 0 auto;
    padding: 18px 0 72px;
    position: relative;
    z-index: 1;
}

.admin-topbar {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 22px;
    align-items: end;
    margin-bottom: 18px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 82% 8%, rgba(125, 211, 252, 0.2), transparent 20rem);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px) saturate(155%);
}

.admin-hero-panel h1 {
    font-size: clamp(40px, 6vw, 78px);
    line-height: 0.94;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.admin-hero-panel p {
    max-width: 620px;
    color: var(--text-sec);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.admin-stat-grid span,
.count-pill {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.32);
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-stat-grid strong {
    color: var(--text-main);
    font-size: 26px;
    line-height: 1;
}

.count-pill {
    min-height: 34px;
    min-width: 42px;
    display: grid;
    place-items: center;
    padding: 7px 10px;
    color: var(--accent);
    font-size: 13px;
}

.admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 18px;
    align-items: start;
}

.admin-main,
.admin-side {
    display: grid;
    gap: 18px;
}

.admin-section {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(22px) saturate(155%);
    box-shadow: var(--shadow-soft);
    padding: 16px;
}

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

.admin-section h2 {
    font-size: 22px;
    line-height: 1;
}

.admin-empty {
    min-height: 130px;
    display: grid;
    place-items: center;
    gap: 10px;
    color: var(--text-sec);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
}

.admin-empty i {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.admin-review-grid {
    display: grid;
    gap: 12px;
}

.review-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 14px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.28);
}

.review-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.review-title-row h3 {
    font-size: 18px;
    line-height: 1.2;
}

.review-body p {
    color: var(--text-sec);
    font-size: 13px;
    line-height: 1.45;
}

.review-meta,
.review-meta a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.review-meta i {
    width: 14px;
    height: 14px;
}

.review-meta span,
.review-meta a {
    gap: 6px;
}

.review-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.review-actions form,
.admin-row form,
.user-actions form {
    display: contents;
}

.danger-btn {
    color: var(--rose);
    border-color: rgba(251, 113, 133, 0.24);
}

.danger-icon {
    color: var(--rose);
    border-color: rgba(251, 113, 133, 0.2);
}

.admin-table,
.user-list {
    display: grid;
    gap: 10px;
}

.admin-row {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.24);
}

.admin-row strong,
.user-info strong {
    display: block;
    font-size: 14px;
}

.admin-row small,
.user-info small {
    display: block;
    color: var(--text-sec);
    font-size: 11px;
    margin-top: 3px;
}

.admin-form {
    display: grid;
    gap: 10px;
}

.user-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(8, 9, 13, 0.24);
}

.user-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.user-info {
    min-width: 0;
}

.user-info small {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-info small svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    color: var(--accent);
    opacity: 0.88;
}

.user-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 7px;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-sec);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.role-tag.admin {
    color: var(--accent);
    border-color: rgba(125, 211, 252, 0.24);
    background: rgba(125, 211, 252, 0.09);
}

.role-tag.banned {
    color: var(--rose);
    border-color: rgba(251, 113, 133, 0.24);
    background: rgba(251, 113, 133, 0.08);
}

.user-actions {
    display: flex;
    gap: 7px;
}

.preview-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    background: rgba(3, 4, 7, 0.84);
    backdrop-filter: blur(24px) saturate(140%);
    opacity: 0;
    pointer-events: none;
    z-index: 1600;
    transition: opacity var(--transition);
}

.preview-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.preview-frame {
    width: min(100%, 1180px);
    max-height: 88vh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 82% 4%, rgba(125, 211, 252, 0.18), transparent 24rem);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
    transform: translateY(14px) scale(0.98);
    transition: transform var(--spring);
}

.preview-overlay.active .preview-frame {
    transform: translateY(0) scale(1);
}

.preview-frame img {
    width: 100%;
    max-height: calc(88vh - 108px);
    object-fit: contain;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
}

.preview-frame figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-sec);
}

.preview-frame strong {
    color: var(--text-main);
    font-size: 18px;
}

.preview-close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    cursor: pointer;
    z-index: 2;
}

.preview-close i {
    width: 20px;
    height: 20px;
}

.modal-open {
    overflow: hidden;
}

.report-modal-content {
    max-width: 560px;
}

.report-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.modal-subtitle {
    margin-top: 6px;
    color: var(--text-sec);
    font-size: 13px;
}

.report-textarea {
    min-height: 120px;
    resize: vertical;
}

.report-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(251, 113, 133, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(251, 113, 133, 0.07);
}

.report-row strong,
.report-row small {
    display: block;
}

.report-row small {
    color: var(--text-sec);
    font-size: 11px;
    margin-top: 3px;
}

.report-row p {
    margin-top: 8px;
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.4;
}

.login-page {
    min-height: 100vh;
}

.login-page::before {
    opacity: 0.75;
}

.login-stage {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    position: relative;
    z-index: 1;
}

.login-stage::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 0 14rem, rgba(8, 9, 13, 0.32) 28rem),
        linear-gradient(to bottom, rgba(8, 9, 13, 0.1), rgba(8, 9, 13, 0.44));
}

.login-card {
    width: min(100%, 430px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 38px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.24), transparent 15rem);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(165%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.login-card > *:not(.login-logo-echo) {
    position: relative;
    z-index: 2;
}

.login-card::before,
.login-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.login-card::after {
    inset: auto -20% -36% -20%;
    height: 48%;
    border: 0;
    background: radial-gradient(circle at center, rgba(134, 239, 172, 0.18), transparent 70%);
    filter: blur(22px);
}

.login-mark {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid rgba(125, 211, 252, 0.34);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(125, 211, 252, 0.24), transparent 3.8rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 22px 54px rgba(0, 0, 0, 0.36),
        0 0 46px rgba(125, 211, 252, 0.2);
    position: relative;
    animation: logoFloat 5.5s ease-in-out infinite;
}

.login-mark::before,
.login-mark::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(125, 211, 252, 0.16);
    animation: logoPulse 3.4s ease-in-out infinite;
}

.login-mark::after {
    inset: -22px;
    border-color: rgba(134, 239, 172, 0.12);
    animation-delay: -1.2s;
}

.logo-aura {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background:
        conic-gradient(from 90deg, transparent, rgba(125, 211, 252, 0.55), transparent 42%, rgba(134, 239, 172, 0.36), transparent 72%);
    filter: blur(8px);
    opacity: 0.66;
    animation: logoSpin 8s linear infinite;
}

.login-mark img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 18px;
    filter:
        drop-shadow(0 0 22px rgba(125, 211, 252, 0.46))
        drop-shadow(0 14px 22px rgba(0, 0, 0, 0.32));
    position: relative;
    z-index: 2;
    animation: logoTilt 6s ease-in-out infinite;
}

.login-logo-echo {
    position: absolute;
    width: 172px;
    aspect-ratio: 1;
    background: url('/uploads/1783184771972.png') center / contain no-repeat;
    opacity: 0.055;
    filter: blur(0.4px) drop-shadow(0 0 24px rgba(125, 211, 252, 0.24));
    pointer-events: none;
    z-index: 1;
}

.login-logo-echo.echo-one {
    top: 16px;
    left: -52px;
    transform: rotate(-18deg);
    animation: echoDrift 9s ease-in-out infinite alternate;
}

.login-logo-echo.echo-two {
    right: -58px;
    bottom: -38px;
    transform: rotate(16deg) scale(1.22);
    animation: echoDrift 10s ease-in-out infinite alternate-reverse;
}

.login-card h1 {
    font-size: clamp(42px, 8vw, 66px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0;
}

.login-card p {
    max-width: 330px;
    color: var(--text-sec);
    font-size: 15px;
}

.login-button {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    font-size: 15px;
}

.login-foot {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-sec);
    font-size: 12px;
    margin-top: 4px;
}

.login-foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-foot i {
    width: 13px;
    height: 13px;
}

.login-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.orbit-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(18px);
    animation: driftCard 8s ease-in-out infinite alternate;
}

.orbit-card i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.orbit-card-one {
    left: calc(50% - 390px);
    top: 35%;
}

.orbit-card-two {
    right: calc(50% - 408px);
    top: 31%;
    animation-delay: -2s;
}

.orbit-card-three {
    right: calc(50% - 330px);
    bottom: 29%;
    animation-delay: -4s;
}

@keyframes driftCard {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -18px, 0); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.46;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

@keyframes logoSpin {
    to { transform: rotate(360deg); }
}

@keyframes logoTilt {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.045); }
}

@keyframes echoDrift {
    from { translate: 0 0; opacity: 0.045; }
    to { translate: 14px -16px; opacity: 0.085; }
}

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

    .feed-topbar {
        grid-template-columns: 180px minmax(0, 1fr) auto;
    }
}

@media (max-width: 960px) {
    .feed-topbar {
        grid-template-columns: 1fr;
    }

    .feed-controls {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .feed-search {
        max-width: none;
        flex: 1 1 260px;
    }

    .feed-nav {
        justify-content: flex-start;
    }

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

    .admin-hero-panel,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-side {
        order: -1;
    }
}

@media (max-width: 760px) {
    .navbar {
        padding: 12px 16px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        padding: 26px;
        min-height: auto;
    }

    .hero-panel {
        justify-self: stretch;
        max-width: none;
    }

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

    .action-bar {
        display: grid;
        grid-template-columns: 1fr 1fr 44px;
    }

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

    .feed-shell {
        width: min(100% - 28px, 1180px);
        padding-top: 14px;
    }

    .feed-masthead {
        align-items: flex-start;
        flex-direction: column;
    }

    .feed-stats {
        flex-wrap: wrap;
    }

    .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .admin-shell {
        width: min(100% - 28px, 1320px);
        padding-top: 14px;
    }

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

    .review-card {
        grid-template-columns: 1fr;
    }

    .review-thumb {
        height: 180px;
    }

    .login-stage {
        padding: 18px;
    }

    .login-card {
        min-height: 500px;
        padding: 30px 22px;
    }

    .login-orbit {
        display: none;
    }
}

@media (max-width: 520px) {
    .feed-controls {
        display: grid;
        grid-template-columns: 1fr 1fr 42px;
    }

    .feed-search {
        grid-column: 1 / -1;
        min-width: 0;
    }

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

    .category-panel {
        min-height: auto;
        padding: 34px 24px;
    }

    .category-brand {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .category-brand h2 {
        font-size: 32px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .review-actions {
        grid-template-columns: 1fr;
    }

    .user-card {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .user-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

/* Login palette correction for the feed */
.feed-page {
    --gx-red: #7dd3fc;
    --gx-red-soft: rgba(125, 211, 252, 0.58);
    --gx-red-deep: rgba(7, 16, 22, 0.88);
    --gx-purple: #86efac;
    --gx-purple-soft: rgba(134, 239, 172, 0.5);
    background:
        radial-gradient(circle at 12% 18%, rgba(125, 211, 252, 0.2), transparent 26rem),
        radial-gradient(circle at 84% 18%, rgba(251, 113, 133, 0.13), transparent 22rem),
        radial-gradient(circle at 54% 70%, rgba(134, 239, 172, 0.1), transparent 24rem),
        linear-gradient(135deg, #08090d 0%, #101116 48%, #07080b 100%);
}

.feed-page::before {
    background-image:
        linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.feed-page .ambient-one {
    background: #7dd3fc;
    opacity: 0.22;
}

.feed-page .ambient-two {
    background: #fb7185;
    opacity: 0.16;
}

.feed-brand .brand-accent,
.feed-footer .brand-accent {
    color: var(--accent);
    text-shadow: 0 0 22px rgba(125, 211, 252, 0.72);
}

.feed-search,
.feed-controls .btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.feed-controls .btn-primary,
.download-btn {
    background: linear-gradient(180deg, var(--primary), #dfe4eb);
    color: #090a0e;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.feed-controls .btn:hover,
.feed-search:focus-within {
    border-color: rgba(125, 211, 252, 0.42);
    background: rgba(255, 255, 255, 0.11);
}

.feed-nav .quick-icon {
    color: var(--accent);
}

.feed-nav .quick-icon.active {
    color: var(--mint);
}

.feed-nav .quick-icon.active::after,
.admin-nav-icon::after {
    background: var(--accent);
    box-shadow: 0 0 16px rgba(125, 211, 252, 0.74);
}

.admin-nav-icon {
    color: var(--accent) !important;
}

.feed-page .leak-card {
    border-color: rgba(125, 211, 252, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(12, 15, 22, 0.92) 58%),
        radial-gradient(circle at 88% 0%, rgba(125, 211, 252, 0.24), transparent 6.5rem);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 38px rgba(125, 211, 252, 0.06),
        0 12px 30px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(125, 211, 252, 0.08);
}

.feed-page .leak-card:nth-child(5n),
.feed-page .leak-card:nth-child(7n) {
    border-color: rgba(134, 239, 172, 0.34);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(10, 18, 17, 0.92) 58%),
        radial-gradient(circle at 88% 0%, rgba(134, 239, 172, 0.22), transparent 6.5rem);
    box-shadow:
        inset 0 0 0 1px rgba(134, 239, 172, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.42),
        0 0 26px rgba(134, 239, 172, 0.12);
}

.feed-page .leak-card:hover {
    border-color: rgba(125, 211, 252, 0.74);
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(125, 211, 252, 0.22);
}

.feed-page .leak-card:nth-child(5n):hover,
.feed-page .leak-card:nth-child(7n):hover {
    border-color: rgba(134, 239, 172, 0.72);
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(134, 239, 172, 0.2);
}

.feed-page .leak-card::before {
    border-color: rgba(255, 255, 255, 0.1);
}

.feed-page .leak-card:nth-child(5n)::before,
.feed-page .leak-card:nth-child(7n)::before {
    border-color: rgba(134, 239, 172, 0.18);
}

.feed-page .badge,
.feed-page .boost-badge {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.92), rgba(134, 239, 172, 0.86));
    color: #061015;
    box-shadow: 0 0 14px rgba(125, 211, 252, 0.22);
}

.feed-page .leak-card:nth-child(5n) .badge,
.feed-page .leak-card:nth-child(7n) .badge,
.feed-page .leak-card:nth-child(5n) .boost-badge,
.feed-page .leak-card:nth-child(7n) .boost-badge {
    background: linear-gradient(135deg, rgba(134, 239, 172, 0.95), rgba(125, 211, 252, 0.82));
    box-shadow: 0 0 14px rgba(134, 239, 172, 0.24);
}

.feed-page .leak-card:nth-child(5n) .download-btn,
.feed-page .leak-card:nth-child(7n) .download-btn {
    background: linear-gradient(135deg, rgba(134, 239, 172, 0.94), rgba(125, 211, 252, 0.86));
    color: #061015;
    box-shadow: 0 0 18px rgba(134, 239, 172, 0.2);
}

.report-chip:hover {
    border-color: rgba(125, 211, 252, 0.55);
    background: rgba(125, 211, 252, 0.18);
}

.feed-footer {
    border-top-color: rgba(125, 211, 252, 0.22);
    background: rgba(8, 9, 13, 0.88);
}

/* Card shape pass: closer to the compact blue reference */
.feed-page .leak-card {
    min-height: 310px;
    border-color: rgba(125, 211, 252, 0.58);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(7, 10, 15, 0.96) 42%),
        rgba(7, 10, 15, 0.94);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.045),
        0 18px 42px rgba(0, 0, 0, 0.44),
        0 0 28px rgba(125, 211, 252, 0.1);
}

.feed-page .leak-card:nth-child(5n),
.feed-page .leak-card:nth-child(7n) {
    border-color: rgba(125, 211, 252, 0.58);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(7, 10, 15, 0.96) 42%),
        rgba(7, 10, 15, 0.94);
}

.feed-page .leak-card::before {
    display: none;
}

.card-topline {
    height: 30px;
    padding: 8px 12px 0;
    color: rgba(255, 255, 255, 0.72);
}

.like-button,
.download-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    position: relative;
    z-index: 4;
}

.like-button {
    cursor: pointer;
    padding: 0;
    transition: color var(--transition), transform var(--transition);
    pointer-events: auto;
    border-radius: 999px;
}

.like-button:hover {
    transform: translateY(-1px);
    color: #ffffff;
}

.like-button i {
    width: 22px;
    height: 22px;
    padding: 0;
    background: transparent;
    fill: transparent;
    stroke-width: 2;
}

.like-button.liked i {
    fill: var(--accent);
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.42));
}

.like-button.pop,
.download-stat.pop {
    animation: statPop 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.like-button.shake {
    animation: statShake 280ms ease;
}

@keyframes statPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

@keyframes statShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.download-stat i {
    width: 22px;
    height: 22px;
    padding: 2px;
    background: transparent;
}

.feed-page .thumb-wrap {
    height: 130px;
    margin: 6px 13px 0;
    border: 0;
    border-radius: 4px;
}

.feed-page .card-content {
    padding: 12px 13px 13px;
}

.title-line {
    min-height: auto;
    margin-bottom: 10px;
}

.feed-page .card-title {
    font-size: 15px;
    line-height: 1.14;
}

.feed-page .badge,
.feed-page .boost-badge,
.feed-page .leak-card:nth-child(5n) .badge,
.feed-page .leak-card:nth-child(7n) .badge,
.feed-page .leak-card:nth-child(5n) .boost-badge,
.feed-page .leak-card:nth-child(7n) .boost-badge {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(134, 239, 172, 0.9));
    color: #061015;
    font-size: 10px;
    box-shadow: 0 0 14px rgba(125, 211, 252, 0.22);
}

.feed-page .card-meta {
    min-height: 30px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

.feed-page .card-meta i {
    display: block;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.78);
}

.feed-page .card-description {
    min-height: 34px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.download-btn,
.feed-page .leak-card:nth-child(5n) .download-btn,
.feed-page .leak-card:nth-child(7n) .download-btn {
    min-height: 36px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary), #dfe4eb);
    color: #090a0e;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.11);
    position: relative;
    z-index: 4;
}

.asset-nav-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), filter var(--transition);
}

.asset-nav-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(125, 211, 252, 0.28));
}

.asset-nav-icon:hover,
.asset-nav-icon.active {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.24);
    background: rgba(255, 255, 255, 0.055);
}

.asset-nav-icon.active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(125, 211, 252, 0.74);
}

.active-filter-bar {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(18px);
}

.active-filter-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.active-filter-bar i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.category-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at 22% 20%, rgba(125, 211, 252, 0.18), transparent 20rem),
        radial-gradient(circle at 78% 78%, rgba(134, 239, 172, 0.12), transparent 18rem),
        rgba(4, 5, 8, 0.78);
    backdrop-filter: blur(22px) saturate(145%);
    opacity: 0;
    pointer-events: none;
    z-index: 1500;
    transition: opacity var(--transition);
}

.category-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.category-panel {
    width: min(100%, 500px);
    min-height: 560px;
    padding: 38px 42px;
    border: 1px solid rgba(125, 211, 252, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(10, 13, 19, 0.94) 58%),
        radial-gradient(circle at 12% 0%, rgba(125, 211, 252, 0.18), transparent 12rem),
        radial-gradient(circle at 88% 100%, rgba(134, 239, 172, 0.14), transparent 12rem);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.56), 0 0 42px rgba(125, 211, 252, 0.16);
    position: relative;
    transform: translateY(14px) scale(0.98);
    transition: transform var(--spring);
}

.category-overlay.active .category-panel {
    transform: translateY(0) scale(1);
}

.category-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 5px;
    pointer-events: none;
}

.category-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}

.category-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(125, 211, 252, 0.3));
}

.category-brand h2 {
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 28px;
    position: relative;
    z-index: 1;
}

.category-grid a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
}

.category-grid a:hover {
    transform: translateY(-2px);
    color: #061015;
    border-color: rgba(125, 211, 252, 0.62);
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.94), rgba(134, 239, 172, 0.86));
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.18);
}

.category-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-color: rgba(125, 211, 252, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
        rgba(8, 9, 13, 0.5);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.category-close:hover {
    transform: translateY(-1px) scale(1.04);
    border-color: rgba(125, 211, 252, 0.58);
    background:
        linear-gradient(145deg, rgba(125, 211, 252, 0.18), rgba(134, 239, 172, 0.08)),
        rgba(8, 9, 13, 0.72);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.18), 0 14px 28px rgba(0, 0, 0, 0.32);
}

.category-close i {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.filter-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at 42% 40%, rgba(125, 211, 252, 0.16), transparent 18rem),
        rgba(4, 5, 8, 0.72);
    backdrop-filter: blur(18px) saturate(145%);
    opacity: 0;
    pointer-events: none;
    z-index: 1500;
    transition: opacity var(--transition);
}

.filter-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.filter-panel {
    width: 220px;
    min-height: 278px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    padding: 34px 18px 18px;
    border: 1px solid rgba(125, 211, 252, 0.34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 0%, rgba(125, 211, 252, 0.18), transparent 9rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(10, 13, 19, 0.94));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54), 0 0 36px rgba(125, 211, 252, 0.14);
    position: relative;
    transform: translateY(12px) scale(0.98);
    transition: transform var(--spring);
}

.filter-overlay.active .filter-panel {
    transform: translateY(0) scale(1);
}

.filter-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 5px;
    pointer-events: none;
}

.filter-panel::after {
    content: "";
    position: absolute;
    inset: 76px 24px auto;
    height: 96px;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    border-right: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
}

.filter-option {
    width: 104px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
}

.filter-option i {
    width: 14px;
    height: 14px;
}

.filter-option:hover,
.filter-option.active {
    transform: translateY(-2px);
    color: #061015;
    border-color: rgba(125, 211, 252, 0.62);
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.94), rgba(134, 239, 172, 0.86));
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.18);
}

.filter-reset {
    width: 164px;
    margin-top: 2px;
}

.filter-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
}

.upload-overlay {
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.2), transparent 24rem),
        rgba(4, 5, 8, 0.76);
}

.upload-modal-content {
    max-width: 430px;
    padding: 30px 36px 34px;
    border-color: rgba(125, 211, 252, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(10, 13, 19, 0.94) 58%),
        radial-gradient(circle at 84% 0%, rgba(125, 211, 252, 0.24), transparent 10rem);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 26px 90px rgba(0, 0, 0, 0.56),
        0 0 42px rgba(125, 211, 252, 0.16);
    position: relative;
}

.upload-modal-content::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 5px;
    pointer-events: none;
    box-shadow: inset 0 0 22px rgba(125, 211, 252, 0.05);
}

.upload-modal-content form,
.upload-modal-content .modal-header {
    position: relative;
    z-index: 1;
}

.upload-title {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.upload-modal-content .form-group {
    margin-bottom: 14px;
}

.upload-modal-content .form-control {
    min-height: 46px;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.upload-modal-content .form-control::placeholder {
    color: rgba(165, 173, 187, 0.72);
}

.upload-modal-content .form-control:focus {
    border-color: rgba(125, 211, 252, 0.68);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.09);
}

.upload-description {
    min-height: 74px;
    resize: vertical;
}

.upload-modal-content select.form-control {
    width: 150px;
    cursor: pointer;
}

.custom-select {
    width: 150px;
    position: relative;
    z-index: 5;
}

.custom-select-trigger {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--text-main);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.custom-select-trigger i {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.custom-select.open .custom-select-trigger {
    border-color: rgba(125, 211, 252, 0.72);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.09);
}

.custom-select.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    padding: 8px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(10, 13, 19, 0.96)),
        rgba(8, 9, 13, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 24px rgba(125, 211, 252, 0.14);
    backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.custom-select.open .custom-select-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.custom-select-menu button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.custom-select-menu button:hover,
.custom-select-menu button.active {
    color: #061015;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.94), rgba(134, 239, 172, 0.86));
    transform: translateX(2px);
}

.upload-modal-content .file-upload-box {
    min-height: 180px;
    justify-content: center;
    margin: 16px 0 20px;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.08), transparent 10rem),
        rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

.upload-modal-content .file-upload-box strong {
    font-size: 15px;
    color: var(--text-main);
}

.upload-modal-content .file-upload-box:hover {
    border-color: rgba(125, 211, 252, 0.72);
    background: rgba(125, 211, 252, 0.08);
    box-shadow: 0 0 24px rgba(125, 211, 252, 0.12);
}

.upload-modal-content .checkbox-group {
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.upload-modal-content .checkbox-group input {
    width: 24px;
    height: 24px;
    accent-color: var(--accent);
}

.upload-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

.upload-actions .btn {
    min-width: 116px;
}

.upload-actions .btn-primary {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(134, 239, 172, 0.88));
    color: #061015;
}

/* Final action chip polish */
.feed-page .thumb-wrap {
    overflow: hidden;
}

.feed-page .expand-chip,
.feed-page .report-chip {
    width: 34px;
    height: 34px;
    top: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(18, 24, 32, 0.84), rgba(6, 9, 14, 0.68));
    color: rgba(247, 247, 251, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 8px 18px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

.feed-page .expand-chip {
    left: 8px;
}

.feed-page .report-chip {
    right: 8px;
}

.feed-page .expand-chip::after,
.feed-page .report-chip::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.feed-page .expand-chip i,
.feed-page .report-chip i {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.feed-page .expand-chip:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(125, 211, 252, 0.72);
    background:
        linear-gradient(180deg, rgba(17, 52, 70, 0.92), rgba(8, 16, 23, 0.76));
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 22px rgba(0, 0, 0, 0.42),
        0 0 20px rgba(125, 211, 252, 0.28);
}

.feed-page .report-chip:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(251, 113, 133, 0.72);
    background:
        linear-gradient(180deg, rgba(78, 18, 31, 0.92), rgba(18, 8, 14, 0.76));
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 22px rgba(0, 0, 0, 0.42),
        0 0 20px rgba(251, 113, 133, 0.28);
}

.feed-page .expand-chip:active,
.feed-page .report-chip:active {
    transform: translateY(0) scale(0.96);
}

/* Logo treatment across app pages */
.feed-brand,
.admin-topbar .brand-lockup {
    gap: 11px;
    position: relative;
}

.feed-brand::after,
.admin-topbar .brand-lockup::after {
    content: "";
    position: absolute;
    left: 46px;
    right: -10px;
    bottom: -9px;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.65), transparent);
    opacity: 0.64;
}

.feed-brand:hover .brand-logo-mini,
.admin-topbar .brand-lockup:hover .brand-logo-mini,
.footer-brand:hover .brand-logo-mini {
    transform: translateY(-1px) scale(1.05);
    border-color: rgba(134, 239, 172, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 28px rgba(125, 211, 252, 0.25),
        0 0 16px rgba(134, 239, 172, 0.16);
}

.brand-logo-mini {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.category-brand {
    position: relative;
    flex-direction: column;
    gap: 8px;
}

.category-brand::before {
    content: "";
    position: absolute;
    width: min(72vw, 360px);
    aspect-ratio: 1;
    top: -78px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 46%),
        conic-gradient(from 90deg, transparent, rgba(125, 211, 252, 0.14), transparent, rgba(134, 239, 172, 0.12), transparent);
    filter: blur(2px);
    opacity: 0.82;
    animation: logoSpin 16s linear infinite;
    pointer-events: none;
}

.category-main-logo {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 30px;
    border: 1px solid rgba(125, 211, 252, 0.34);
    background:
        radial-gradient(circle at 50% 35%, rgba(125, 211, 252, 0.25), transparent 4.2rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 44px rgba(0, 0, 0, 0.36),
        0 0 34px rgba(125, 211, 252, 0.2);
    position: relative;
    z-index: 1;
    animation: logoFloat 5.8s ease-in-out infinite;
}

.category-main-logo::after {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 36px;
    border: 1px solid rgba(134, 239, 172, 0.16);
    animation: logoPulse 3.8s ease-in-out infinite;
}

.category-main-logo img {
    width: 82px !important;
    height: 82px !important;
    object-fit: contain;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 22px rgba(125, 211, 252, 0.44));
}

.category-brand h2,
.category-brand small {
    position: relative;
    z-index: 1;
}

.category-brand small {
    display: block;
    margin-top: 6px;
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Admin control center upgrade */
.admin-page {
    background:
        radial-gradient(circle at 14% 20%, rgba(125, 211, 252, 0.2), transparent 30rem),
        radial-gradient(circle at 92% 14%, rgba(251, 113, 133, 0.14), transparent 28rem),
        radial-gradient(circle at 50% 86%, rgba(134, 239, 172, 0.08), transparent 28rem),
        linear-gradient(135deg, #05070b 0%, #0d1118 50%, #07080d 100%);
}

.admin-page::before {
    background-image:
        linear-gradient(rgba(125, 211, 252, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 24%, rgba(0, 0, 0, 0.84), transparent 76%);
}

.admin-shell {
    width: min(100% - 38px, 1360px);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 10px 0;
    backdrop-filter: blur(18px);
}

.admin-hero-panel-upgraded + .admin-hero-panel {
    display: none;
}

.admin-hero-panel-upgraded {
    min-height: 250px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    overflow: hidden;
    position: relative;
    border-color: rgba(125, 211, 252, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 88% 0%, rgba(125, 211, 252, 0.28), transparent 24rem),
        radial-gradient(circle at 8% 90%, rgba(134, 239, 172, 0.12), transparent 18rem);
}

.admin-hero-panel-upgraded::before {
    content: "";
    position: absolute;
    width: 280px;
    aspect-ratio: 1;
    right: -70px;
    top: -90px;
    background: url('/uploads/1783184771972.png') center / contain no-repeat;
    opacity: 0.055;
    transform: rotate(14deg);
    filter: drop-shadow(0 0 34px rgba(125, 211, 252, 0.36));
}

.admin-hero-copy {
    position: relative;
    z-index: 1;
}

.admin-hero-badge,
.admin-hero-status span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.09);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-hero-badge i,
.admin-hero-status i {
    width: 15px;
    height: 15px;
}

.admin-hero-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.admin-hero-status span {
    color: var(--text-sec);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(8, 11, 18, 0.38);
    letter-spacing: 0;
    text-transform: none;
}

.admin-hero-status span.hot {
    color: #fff;
    border-color: rgba(251, 113, 133, 0.34);
    background: rgba(251, 113, 133, 0.12);
    box-shadow: 0 0 22px rgba(251, 113, 133, 0.12);
}

.admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}

.admin-stat-grid span {
    min-height: 88px;
    position: relative;
    overflow: hidden;
    padding: 15px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(8, 11, 18, 0.52)),
        rgba(8, 11, 18, 0.44);
    border-color: rgba(255, 255, 255, 0.1);
}

.admin-stat-grid span::after {
    content: "";
    position: absolute;
    inset: auto -24px -42px auto;
    width: 110px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(125, 211, 252, 0.12);
    filter: blur(8px);
}

.admin-stat-grid span > i {
    width: 19px;
    height: 19px;
    color: var(--accent);
    opacity: 0.9;
}

.admin-stat-grid strong {
    font-size: 32px;
}

.admin-stat-grid em {
    color: var(--text-sec);
    font-style: normal;
}

.admin-command-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.admin-command-strip :is(a, button) {
    min-height: 58px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text-main);
    text-decoration: none;
    text-align: left;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.admin-command-strip :is(a, button):hover,
.admin-command-strip :is(a, button).active {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.42);
    background: rgba(125, 211, 252, 0.08);
}

.admin-command-strip :is(a, button).active {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 34px rgba(125, 211, 252, 0.12);
}

.admin-command-strip i {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.admin-command-strip span {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 850;
}

.admin-command-strip strong {
    min-width: 28px;
    min-height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.5);
    color: var(--accent);
    font-size: 12px;
}

.admin-category-banner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(125, 211, 252, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(8, 11, 18, 0.48);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.admin-category-banner h2 {
    font-size: 22px;
    line-height: 1;
}

.admin-category-banner p {
    max-width: 560px;
    color: var(--text-sec);
    font-size: 13px;
    font-weight: 700;
}

.admin-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.admin-overview-grid.is-category-hidden {
    display: none;
}

.admin-overview-card {
    min-height: 190px;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 100% 0%, rgba(125, 211, 252, 0.18), transparent 10rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
        rgba(8, 11, 18, 0.62);
    color: var(--text-main);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.admin-overview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.58), transparent 46%, rgba(134, 239, 172, 0.28)) border-box;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.42;
    pointer-events: none;
}

.admin-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.44);
    background:
        radial-gradient(circle at 100% 0%, rgba(125, 211, 252, 0.26), transparent 10rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
        rgba(8, 11, 18, 0.7);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 42px rgba(125, 211, 252, 0.12);
}

.admin-overview-card i {
    width: 30px;
    height: 30px;
    padding: 7px;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: 10px;
    background: rgba(125, 211, 252, 0.1);
    color: var(--accent);
}

.admin-overview-card span {
    font-size: 22px;
    font-weight: 900;
}

.admin-overview-card strong {
    color: var(--accent);
    font-size: 13px;
}

.admin-overview-card small {
    color: var(--text-sec);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.admin-layout {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 20px;
}

.admin-layout.is-overview {
    display: none;
}

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

.admin-layout.is-filtered .admin-side,
.admin-layout.is-filtered .admin-main {
    display: grid;
    grid-template-columns: 1fr;
}

.admin-section {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(8, 11, 18, 0.64);
}

.admin-section.is-category-hidden {
    display: none;
}

.admin-section::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.52), transparent);
    opacity: 0.64;
}

.admin-section-head {
    position: relative;
    z-index: 1;
}

.section-subline {
    display: block;
    margin-top: 7px;
    color: var(--text-sec);
    font-size: 11px;
    font-weight: 800;
}

.admin-empty {
    min-height: 150px;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.08), transparent 10rem),
        rgba(8, 11, 18, 0.32);
}

.review-card,
.admin-row,
.report-row,
.user-card {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(8, 11, 18, 0.36)),
        rgba(8, 11, 18, 0.4);
}

.review-card:hover,
.admin-row:hover,
.report-row:hover,
.user-card:hover {
    border-color: rgba(125, 211, 252, 0.28);
    background: rgba(125, 211, 252, 0.055);
}

.admin-access-card .btn-primary {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(134, 239, 172, 0.86));
    color: #061015;
}

.admin-pull-card {
    border-color: rgba(134, 239, 172, 0.16);
}

.pull-settings-form {
    margin-bottom: 12px;
}

.pull-start-form {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
    align-items: end;
}

.pull-limit span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-sec);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.pull-note {
    margin-top: 12px;
    color: var(--text-sec);
    font-size: 12px;
    line-height: 1.45;
}

.pull-note strong {
    color: var(--accent);
}

.role-tag.pullable {
    color: var(--mint);
    border-color: rgba(134, 239, 172, 0.24);
    background: rgba(134, 239, 172, 0.08);
}

.admin-members-card {
    max-height: calc(100vh - 128px);
    position: sticky;
    top: 82px;
}

.admin-members-card .user-list {
    max-height: 560px;
    overflow: auto;
    padding-right: 4px;
}

.user-card {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    padding: 12px;
}

.user-card.is-admin {
    border-color: rgba(125, 211, 252, 0.2);
    box-shadow: inset 3px 0 0 rgba(125, 211, 252, 0.7);
}

.user-card.is-banned {
    border-color: rgba(251, 113, 133, 0.22);
    box-shadow: inset 3px 0 0 rgba(251, 113, 133, 0.66);
}

.user-avatar {
    width: 50px;
    height: 50px;
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.08);
}

.user-info strong {
    font-size: 15px;
}

.user-actions .quick-icon {
    width: 36px;
    height: 36px;
}

.member-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.member-search {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(8, 11, 18, 0.42);
    color: var(--text-sec);
}

.member-search i {
    width: 17px;
    height: 17px;
    color: var(--accent);
}

.member-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 13px;
}

.member-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.member-tabs button {
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-sec);
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.member-tabs button:hover,
.member-tabs button.active {
    border-color: rgba(125, 211, 252, 0.42);
    background: rgba(125, 211, 252, 0.12);
    color: var(--text-main);
}

.member-table {
    display: grid;
    gap: 6px;
}

.member-table-head,
.member-row {
    display: grid;
    grid-template-columns: minmax(155px, 1.2fr) minmax(150px, 1.4fr) minmax(86px, 0.7fr) 78px;
    gap: 10px;
    align-items: center;
}

.member-table-head {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0 10px 6px;
    color: var(--text-sec);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(13, 17, 24, 0.94);
}

.member-row {
    min-height: 62px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(8, 11, 18, 0.32)),
        rgba(8, 11, 18, 0.38);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.member-row:hover {
    transform: translateX(2px);
    border-color: rgba(125, 211, 252, 0.28);
    background: rgba(125, 211, 252, 0.055);
}

.member-row.is-admin {
    box-shadow: inset 3px 0 0 rgba(125, 211, 252, 0.72);
}

.member-row.is-banned {
    box-shadow: inset 3px 0 0 rgba(251, 113, 133, 0.72);
}

.member-row.is-hidden {
    display: none;
}

.member-person {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-person .user-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
}

.member-person strong,
.member-person small,
.member-contact span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-person strong {
    font-size: 13px;
}

.member-person small,
.member-contact span {
    color: var(--text-sec);
    font-size: 10px;
}

.member-contact {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.member-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.member-contact i {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    color: var(--accent);
}

.member-status {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.member-row .user-actions {
    justify-content: flex-end;
}

.member-row .user-actions .quick-icon {
    width: 32px;
    height: 32px;
}

.member-empty-state {
    display: none;
    min-height: 110px;
    place-items: center;
    gap: 8px;
    color: var(--text-sec);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.3);
}

.member-empty-state.active {
    display: grid;
}

.member-empty-state i {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

@media (max-width: 1120px) {
    .admin-command-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-members-card {
        position: relative;
        top: auto;
        max-height: none;
    }

    .admin-members-card .user-list {
        max-height: none;
    }
}

@media (max-width: 920px) {
    .member-table-head {
        display: none;
    }

    .member-row {
        grid-template-columns: 1fr auto;
    }

    .member-contact,
    .member-status {
        grid-column: 1 / -1;
    }
}

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

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

    .admin-hero-panel-upgraded {
        grid-template-columns: 1fr;
    }

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

    .admin-category-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}
