/* ============================================================
   custom.css — V3 APEX Design System
   ID Zone Premium AI-Gaming Platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — Design Tokens
   ============================================================ */
:root {
    /* Core Palette */
    --bg-dark: #04040a;
    --bg-surface: #070710;
    --bg-elevated: #0c0c1a;
    --bg-panel: rgba(7, 7, 16, 0.92);
    --bg-card: rgba(12, 12, 26, 0.8);

    /* Brand Colors */
    --neon-yellow: #fbbf24;
    --neon-blue: #22d3ee;
    --neon-red: #f43f5e;
    --neon-purple: #a855f7;
    --neon-green: #10b981;
    --neon-orange: #f97316;

    /* Accent Gradients */
    --grad-primary: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --grad-danger: linear-gradient(135deg, #f43f5e 0%, #a855f7 100%);

    /* Glass Effect */
    --glass-bg: rgba(7, 7, 20, 0.75);
    --glass-border: rgba(34, 211, 238, 0.12);
    --glass-border-h: rgba(34, 211, 238, 0.45);
    --glass-blur: 18px;

    /* Typography */
    --font-gaming: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', 'Hind Siliguri', sans-serif;
    --font-ui: 'Space Grotesk', sans-serif;

    /* Shadows */
    --shadow-sm: 0 0 20px rgba(34, 211, 238, 0.08);
    --shadow-md: 0 0 40px rgba(34, 211, 238, 0.12);
    --shadow-lg: 0 0 60px rgba(34, 211, 238, 0.18);
    --shadow-yellow: 0 0 40px rgba(251, 191, 36, 0.15);
    --shadow-red: 0 0 40px rgba(244, 63, 94, 0.15);
    --shadow-purple: 0 0 40px rgba(168, 85, 247, 0.15);

    /* Borders */
    --border-width: 1px;
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #e2e8f0;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* GPU-accelerated layered background */
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(168, 85, 247, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gaming-font {
    font-family: var(--font-gaming);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.cyber-font {
    font-family: var(--font-ui);
    letter-spacing: 0.04em;
    font-weight: 500;
}

.text-glow {
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
}

/* ============================================================
   GLASS MORPHISM — V3 Elevated
   ============================================================ */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.glass-panel:hover {
    border-color: var(--glass-border-h);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ============================================================
   GRID BACKGROUND
   ============================================================ */
.bg-hex-grid {
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ============================================================
   SCANLINE OVERLAY
   ============================================================ */
.bg-scanline {
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.25) 2px,
            rgba(0, 0, 0, 0.25) 4px);
}

/* ============================================================
   NAVBAR NAV-LINK UNDERLINE
   ============================================================ */
.nav-link {
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
    box-shadow: 0 0 8px var(--neon-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================================
   GLOW UTILITIES
   ============================================================ */
.glow-yellow {
    box-shadow: var(--shadow-yellow);
    border-color: rgba(251, 191, 36, 0.3);
}

.glow-blue {
    box-shadow: var(--shadow-md);
    border-color: rgba(34, 211, 238, 0.3);
}

.glow-red {
    box-shadow: var(--shadow-red);
    border-color: rgba(244, 63, 94, 0.3);
}

.glow-purple {
    box-shadow: var(--shadow-purple);
    border-color: rgba(168, 85, 247, 0.3);
}

/* ============================================================
   ID CARD — V3 Clip + Shine
   ============================================================ */
.clip-card {
    position: relative;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.clip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.clip-card:hover::before {
    transform: translateX(100%);
}

.clip-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(251, 191, 36, 0.15);
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--grad-primary);
    margin-top: 12px;
    border-radius: 2px;
    box-shadow: 0 0 12px var(--neon-blue);
}

/* ============================================================
   BUTTONS — V3 Premium
   ============================================================ */
.btn-neon {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all var(--transition-base);
}

.btn-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.btn-neon:hover::before {
    opacity: 0.15;
}

.btn-neon:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.4), 0 0 60px rgba(34, 211, 238, 0.15);
}

.btn-neon:active {
    transform: scale(0.97);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Float */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(1deg);
    }

    66% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

.animate-float {
    animation: float 7s ease-in-out infinite;
    will-change: transform;
}

/* Glitch Effect */
@keyframes glitchMain {

    0%,
    85%,
    100% {
        transform: translate(0);
    }

    86% {
        transform: translate(-3px, 2px);
    }

    88% {
        transform: translate(3px, -2px);
    }

    90% {
        transform: translate(-2px, -3px);
    }

    92% {
        transform: translate(2px, 3px);
    }

    94% {
        transform: translate(0);
    }
}

@keyframes glitchBefore {

    0%,
    85%,
    100% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(-4px, 0);
        opacity: 0;
    }

    86%,
    90% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-4px, -2px);
        text-shadow: -2px 0 #f43f5e;
        opacity: 0.9;
    }

    92%,
    94% {
        clip-path: inset(70% 0 5% 0);
        transform: translate(4px, 2px);
        text-shadow: 2px 0 #22d3ee;
        opacity: 0.9;
    }
}

@keyframes glitchAfter {

    0%,
    85%,
    100% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(4px, 0);
        opacity: 0;
    }

    87%,
    91% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(4px, 2px);
        text-shadow: 2px 0 #a855f7;
        opacity: 0.8;
    }

    93% {
        clip-path: inset(5% 0 80% 0);
        transform: translate(-4px, -2px);
        text-shadow: -2px 0 #fbbf24;
        opacity: 0.8;
    }
}

.text-glitch {
    position: relative;
    display: inline-block;
    animation: glitchMain 6s infinite linear;
    will-change: transform;
}

.text-glitch::before,
.text-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    pointer-events: none;
}

.text-glitch::before {
    animation: glitchBefore 6s infinite linear;
}

.text-glitch::after {
    animation: glitchAfter 6s infinite linear;
}

/* Scanline (body pseudo) */
@keyframes moveScanline {
    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }
}

.scanline::before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(34, 211, 238, 0.08);
    animation: moveScanline 8s linear infinite;
    z-index: 9999;
    pointer-events: none;
    will-change: top;
}

/* Cyber Pulse Glow */
@keyframes cyberPulse {

    0%,
    100% {
        box-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 60px currentColor;
        opacity: 0.85;
    }
}

.cyber-pulse-glow {
    animation: cyberPulse 2.5s ease-in-out infinite;
    will-change: box-shadow, opacity;
}

/* Typing Cursor */
@keyframes blinkCursor {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--neon-yellow);
        box-shadow: 0 0 10px var(--neon-yellow);
    }
}

.typing-cursor {
    display: inline-block;
    border-right: 3px solid var(--neon-yellow);
    animation: blinkCursor 1s step-end infinite;
}

/* Data Stream */
@keyframes dataStream {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

/* Spin Slow */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
    will-change: transform;
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scale Pulse */
@keyframes scalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.animate-scale-pulse {
    animation: scalePulse 3s ease-in-out infinite;
}

/* Neon Flicker */
@keyframes neonFlicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        opacity: 0.7;
    }
}

.neon-flicker {
    animation: neonFlicker 4s ease-in-out infinite;
}

/* Gradient Shift */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient {
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

/* ============================================================
   FORM INPUTS — V3
   ============================================================ */
.v3-input {
    background: rgba(4, 4, 10, 0.9);
    border: 1px solid rgba(34, 211, 238, 0.15);
    color: #e2e8f0;
    padding: 12px 16px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    border-radius: 0;
    width: 100%;
}

.v3-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08), 0 0 20px rgba(34, 211, 238, 0.12);
}

.v3-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

/* ============================================================
   BADGE SYSTEM
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-blue {
    background: rgba(34, 211, 238, 0.10);
    color: var(--neon-blue);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.badge-yellow {
    background: rgba(251, 191, 36, 0.10);
    color: var(--neon-yellow);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-red {
    background: rgba(244, 63, 94, 0.10);
    color: var(--neon-red);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.badge-green {
    background: rgba(16, 185, 129, 0.10);
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.10);
    color: var(--neon-purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* ============================================================
   STATUS INDICATORS
   ============================================================ */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: scalePulse 2s ease-in-out infinite;
}

.status-dot.pending {
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
    animation: scalePulse 2s ease-in-out infinite;
}

.status-dot.offline {
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.neon-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.4) 50%, transparent 100%);
    margin: 24px 0;
}

/* ============================================================
   CORNER ACCENT (Cyberpunk UI Detail)
   ============================================================ */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.corner-accent::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
    box-shadow: -2px -2px 10px rgba(34, 211, 238, 0.3);
}

.corner-accent::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
    box-shadow: 2px 2px 10px rgba(34, 211, 238, 0.3);
}

/* ============================================================
   STAT CARDS
   ============================================================ */
.stat-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid rgba(34, 211, 238, 0.1);
    padding: 24px;
    transition: all var(--transition-base);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* ============================================================
   TABLE STYLES
   ============================================================ */
.v3-table {
    width: 100%;
    border-collapse: collapse;
}

.v3-table th {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(34, 211, 238, 0.6);
    padding: 16px 20px;
    background: rgba(4, 4, 10, 0.8);
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    white-space: nowrap;
}

.v3-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    transition: background var(--transition-fast);
}

.v3-table tr:hover td {
    background: rgba(34, 211, 238, 0.025);
}

/* ============================================================
   TIMELINE (How To Buy)
   ============================================================ */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.4) 20%, rgba(34, 211, 238, 0.4) 80%, transparent);
    transform: translateX(-50%);
}

.timeline-node {
    width: 44px;
    height: 44px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
    background: var(--bg-dark);
    transition: all var(--transition-base);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.modal-overlay {
    background: rgba(4, 4, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.v3-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border-radius: 2px;
}

.v3-progress-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
    background: rgba(34, 211, 238, 0.25);
    color: #fff;
}

/* ============================================================
   MOBILE PERFORMANCE — Reduce Heavy Effects
   ============================================================ */
@media (max-width: 768px) {
    /* Disable moving scanline on mobile — saves GPU */
    .scanline::before {
        display: none;
    }

    /* Simplify glitch effect on mobile */
    .text-glitch::before,
    .text-glitch::after {
        display: none;
    }

    /* Disable backdrop-filter blur on low-end devices (costly) */
    .glass-panel {
        backdrop-filter: blur(8px) saturate(120%);
        -webkit-backdrop-filter: blur(8px) saturate(120%);
    }

    /* Simplify body gradient on mobile */
    body {
        background-attachment: scroll;
        background-image: none;
        background-color: var(--bg-dark);
    }

    /* Disable float animation on mobile */
    .animate-float {
        animation: none;
    }

    /* Faster transitions on mobile for snappier feel */
    * {
        transition-duration: 150ms !important;
    }
    .clip-card {
        transition-duration: 200ms !important;
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   MOBILE-FIRST HELPERS
   ============================================================ */
/* Touch-friendly tap targets */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    /* Exception for inline links in text */
    p a, li a, td a {
        min-height: unset;
        display: inline;
    }

    /* Tables: force scroll on mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
    }

    /* Prevent text overflow on cards */
    .clip-card,
    .glass-panel {
        word-break: break-word;
    }
}

/* ============================================================
   ADMIN MOBILE SYSTEM
   ============================================================ */
body.admin-mobile-panel {
    --admin-mobile-gap: 14px;
}

body.admin-mobile-panel .admin-page-shell {
    min-height: 100dvh;
}

body.admin-mobile-panel .admin-main-content {
    min-width: 0;
}

body.admin-mobile-panel .admin-touch-btn {
    min-height: 40px;
}

body.admin-mobile-panel .admin-modal-shell {
    position: fixed;
    inset: 0;
    z-index: 150;
    padding: 16px;
    overflow-y: auto;
}

body.admin-mobile-panel .admin-modal-panel {
    width: min(720px, 100%);
    max-height: 90dvh;
    overflow-y: auto;
    margin: auto;
}

@media (max-width: 768px) {
    body.admin-mobile-panel {
        font-size: 14px;
    }

    body.admin-mobile-panel .admin-page-shell {
        display: flex;
        flex-direction: column;
        gap: var(--admin-mobile-gap);
        min-height: auto;
    }

    body.admin-mobile-panel .admin-main-content {
        width: 100%;
        padding: 12px !important;
        overflow-x: hidden;
    }

    body.admin-mobile-panel .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    body.admin-mobile-panel .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    body.admin-mobile-panel table th,
    body.admin-mobile-panel table td {
        white-space: normal !important;
    }

    body.admin-mobile-panel .admin-desktop-table {
        display: none !important;
    }

    body.admin-mobile-panel .admin-mobile-cards {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }

    body.admin-mobile-panel .admin-mobile-card {
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(7, 7, 16, 0.94);
        border-radius: 8px;
        padding: 12px;
    }

    body.admin-mobile-panel .admin-mobile-card-row {
        display: grid;
        grid-template-columns: 92px 1fr;
        align-items: start;
        gap: 8px;
        margin-bottom: 6px;
        font-size: 12px;
    }

    body.admin-mobile-panel .admin-mobile-card-row:last-child {
        margin-bottom: 0;
    }

    body.admin-mobile-panel .admin-mobile-card-label {
        color: #94a3b8;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 10px;
        line-height: 1.2;
    }

    body.admin-mobile-panel .admin-mobile-card-value {
        color: #f8fafc;
        font-size: 12px;
        line-height: 1.35;
        word-break: break-word;
    }

    body.admin-mobile-panel .admin-table-mobile-action {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    body.admin-mobile-panel .admin-table-mobile-action a,
    body.admin-mobile-panel .admin-table-mobile-action button,
    body.admin-mobile-panel .admin-table-mobile-action input[type="submit"] {
        min-height: 40px;
    }
}