        :root {
            --primary-gradient: linear-gradient(135deg, #ffa8a8 0%, #8d96ff 100%);
            --secondary-gradient: linear-gradient(135deg, #ffa8a8 0%, #ffcece 100%);
            --success-gradient: linear-gradient(135deg, #8d96ff 0%, #b8bfff 100%);
            --danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            --warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);

            --glass-bg: rgba(255, 255, 255, 0.52);
            --glass-bg-light: rgba(255, 255, 255, 0.68);
            --glass-border: rgba(255, 255, 255, 0.72);
            --glass-border-subtle: rgba(255, 168, 168, 0.25);
            --glass-hover: rgba(255, 255, 255, 0.72);
            --glass-shadow: 0 8px 32px rgba(180, 130, 180, 0.14), 0 2px 8px rgba(141, 150, 255, 0.10);
            --glass-shadow-hover: 0 24px 64px rgba(180, 130, 180, 0.22), 0 6px 20px rgba(141, 150, 255, 0.16);
            --glass-inset: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 -1px 0 rgba(255, 255, 255, 0.18) inset;
            --text-primary: #2d1f4e;
            --text-secondary: #7a6f9e;
            --blur-amount: 28px;
            --blur-heavy: 40px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background: linear-gradient(150deg, #fde8e8 0%, #f0efff 35%, #e8eaff 65%, #fde4f8 100%);
            background-attachment: fixed;
            min-height: 100vh;
            font-family: 'Inter', -apple-system, 'SF Pro Display', system-ui, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        /* Large text = Inter, Small/secondary text = Poppins */
        h1, h2, h3, h4, h5, h6,
        .stat-number, .navbar-brand, .sidebar-logo-text,
        .countdown-time, .section h2 {
            font-family: 'Inter', sans-serif;
        }

        .stat-label, .menu-section-header, .menu-item,
        .nav-link, .btn, label, small, .badge,
        .usage-date, .usage-count, .endpoint-name,
        .ip-address, .ip-time, .user-email,
        .user-stats, p, span, .form-group label,
        .countdown-label, .reset-info span,
        .plugin-info, .limit-info {
            font-family: 'Poppins', sans-serif;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: 
                radial-gradient(ellipse 55% 45% at 15% 15%, rgba(255, 168, 168, 0.28) 0%, transparent 65%),
                radial-gradient(ellipse 45% 55% at 85% 85%, rgba(141, 150, 255, 0.22) 0%, transparent 65%),
                radial-gradient(ellipse 40% 35% at 70% 20%, rgba(200, 160, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse 35% 40% at 30% 80%, rgba(255, 200, 230, 0.18) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .dashboard-container, .main-content, .sidebar, nav {
            position: relative;
            z-index: 1;
        }

        i.fas, i.fa, i.far, i.fab, i.fal, 
        .fas, .fa, .far, .fab, .fal,
        i[class*="fa-"] {
            font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome" !important;
            font-weight: 900 !important;
            font-style: normal !important;
            font-variant: normal !important;
            text-rendering: auto !important;
            line-height: 1 !important;
            -webkit-font-smoothing: antialiased !important;
            -moz-osx-font-smoothing: grayscale !important;
            display: inline-block !important;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border-radius: 18px;
            border: 1px solid var(--glass-border);
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .stat-item:hover {
            background: var(--glass-bg-light);
            transform: translateY(-2px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
        }

        .stat-item .stat-value {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-item .stat-label {
            display: block;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .stat-icon {
            min-width: 64px !important;
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            flex-shrink: 0;
            box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.3) inset;
            margin-bottom: 0.25rem;
        }

        .stat-icon i {
            font-size: 1.7rem !important;
            display: block !important;
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
            filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
        }

        .stat-icon img {
            width: 2rem;
            height: 2rem;
        }

        .stat-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.15rem;
            word-break: break-all;
            line-height: 1.1;
        }

        .stat-label {
            font-size: 0.82rem;
            color: var(--text-secondary);
            font-weight: 600;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .section h2 i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hamburger-btn {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.42);
            cursor: pointer;
            border-radius: 13px;
            transition: all 0.32s cubic-bezier(.23,1,.32,1);
            margin-right: 0.65rem;
            padding: 9px;
            backdrop-filter: blur(40px) saturate(200%);
            -webkit-backdrop-filter: blur(40px) saturate(200%);
            box-shadow:
                0 4px 24px rgba(180,130,200,0.15),
                0 1px 0 rgba(255,255,255,0.65) inset,
                0 -1px 0 rgba(255,255,255,0.08) inset;
            flex-shrink: 0;
        }

        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.28);
            box-shadow: 0 8px 32px rgba(180,130,200,0.22), 0 1px 0 rgba(255,255,255,0.8) inset;
            transform: scale(1.07);
            border-color: rgba(255, 255, 255, 0.65);
        }

        .hamburger-btn:active {
            transform: scale(0.94);
            background: rgba(255, 255, 255, 0.20);
        }

        .hamburger-btn .hb-line {
            display: block;
            width: 18px;
            height: 1.8px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 2px;
            transition: transform 0.38s cubic-bezier(.23,1,.32,1), opacity 0.25s ease, width 0.3s ease;
            transform-origin: center;
            filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
        }

        .hamburger-btn.is-open .hb-line:nth-child(1) {
            transform: translateY(6.8px) rotate(45deg);
        }

        .hamburger-btn.is-open .hb-line:nth-child(2) {
            opacity: 0;
            width: 0;
        }

        .hamburger-btn.is-open .hb-line:nth-child(3) {
            transform: translateY(-6.8px) rotate(-45deg);
        }

        .menu-section-header {
            padding: 0.75rem 1.5rem;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            margin-top: 1rem;
        }

        .menu-section-header:first-child {
            margin-top: 0;
        }


        .sidebar {
            background: rgba(240, 225, 255, 0.10);
            backdrop-filter: blur(80px) saturate(320%) brightness(1.18);
            -webkit-backdrop-filter: blur(80px) saturate(320%) brightness(1.18);
            border-right: 1px solid rgba(255, 255, 255, 0.30);
            box-shadow:
                8px 0 64px rgba(180, 130, 220, 0.10),
                1px 0 0 rgba(255, 255, 255, 0.60) inset;
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            width: 280px;
            z-index: 1000;
            transition: transform 0.38s cubic-bezier(.23,1,.32,1);
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        .sidebar-logo-area {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.35rem 1.1rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
            position: relative;
            z-index: 1;
            background: rgba(255,255,255,0.05);
        }

        .sidebar-logo-icon {
            width: 34px; height: 34px;
            background: linear-gradient(135deg, #ffa8a8 0%, #8d96ff 100%);
            border: none;
            border-radius: 9px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 16px rgba(141,150,255,0.4), 0 1px 0 rgba(255,255,255,0.5) inset;
            font-size: 0.88rem;
            color: #fff;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .sidebar-logo-icon::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
            border-radius: 9px 9px 50% 50%;
        }

        .sidebar-logo-icon i {
            position: relative;
            z-index: 1;
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
            filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
        }

        .sidebar-logo-text {
            font-size: 1.1rem;
            font-weight: 800;
            color: rgba(255,255,255,0.95);
            letter-spacing: -0.2px;
            text-shadow: 0 1px 10px rgba(140,80,200,0.3);
        }

        .sidebar-menu {
            width: 100%;
            display: flex;
            flex-direction: column;
            padding: 0.7rem 0.85rem 2rem;
            gap: 0;
            position: relative;
            z-index: 1;
        }

        .menu-section-header {
            padding: 1.1rem 0.55rem 0.4rem;
            font-size: 0.64rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            color: rgba(255, 255, 255, 0.40);
            text-transform: uppercase;
        }

        .menu-group {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.20);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 0.5rem;
            box-shadow: 0 2px 20px rgba(180,130,220,0.08), 0 1px 0 rgba(255,255,255,0.35) inset;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.82rem 1rem;
            color: rgba(255, 255, 255, 0.90);
            text-decoration: none;
            transition: background 0.22s ease, padding-left 0.22s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            font-weight: 600;
            font-size: 0.91rem;
            border-radius: 0;
            text-shadow: 0 1px 6px rgba(100, 60, 160, 0.3);
            position: relative;
            /* DIVIDER - visible white hairline */
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0);
            transition: background 0.22s ease;
            pointer-events: none;
        }

        .menu-item:hover::before {
            background: rgba(255, 255, 255, 0.12);
        }

        .menu-item:hover {
            color: #ffffff;
            padding-left: 1.15rem;
        }

        .menu-item.active {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            font-weight: 700;
        }

        .menu-item.active::after {
            content: '';
            position: absolute;
            left: 0; top: 18%; bottom: 18%;
            width: 3px;
            background: linear-gradient(180deg, rgba(255,210,210,0.95), rgba(210,210,255,0.95));
            border-radius: 0 3px 3px 0;
            box-shadow: 0 0 10px rgba(255,255,255,0.6);
        }

        .menu-item-icon {
            flex-shrink: 0;
            width: 28px; height: 28px;
            border-radius: 8px;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 0.76rem;
            background: rgba(255,255,255,0.16);
            border: 1px solid rgba(255,255,255,0.26);
            box-shadow: 0 1px 6px rgba(180,130,220,0.12), 0 1px 0 rgba(255,255,255,0.45) inset;
            transition: all 0.22s ease;
            color: rgba(255,255,255,0.95);
        }

        .menu-item:hover .menu-item-icon,
        .menu-item.active .menu-item-icon {
            background: rgba(255,255,255,0.26);
            border-color: rgba(255,255,255,0.38);
            box-shadow: 0 2px 10px rgba(180,130,220,0.2), 0 1px 0 rgba(255,255,255,0.55) inset;
        }

        .menu-item i {
            flex-shrink: 0;
            width: 14px;
            text-align: center;
        }

        .sidebar.collapsed {
            transform: translateX(-100%);
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(40, 20, 70, 0.28);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.32s ease, visibility 0.32s ease;
        }

        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .navbar {
            background: linear-gradient(135deg, rgba(255, 168, 168, 0.78) 0%, rgba(141, 150, 255, 0.78) 100%) !important;
            backdrop-filter: blur(var(--blur-heavy)) saturate(220%);
            -webkit-backdrop-filter: blur(var(--blur-heavy)) saturate(220%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 
                0 4px 40px rgba(180, 130, 200, 0.22),
                0 1px 0 rgba(255, 255, 255, 0.6) inset,
                0 -1px 0 rgba(255, 255, 255, 0.08) inset;
            position: sticky;
            top: 0;
            z-index: 1001;
            height: 62px !important;
            min-height: 62px !important;
            max-height: 62px !important;
            display: flex !important;
            align-items: center !important;
            padding: 0 !important;
        }

        .navbar .container-fluid {
            height: 62px;
            flex-wrap: nowrap !important;
            align-items: center !important;
            display: flex !important;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }

        .brand-icon-box {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, #ffa8a8 0%, #8d96ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 4px 16px rgba(141, 150, 255, 0.45),
                0 1px 0 rgba(255,255,255,0.55) inset,
                0 -1px 0 rgba(0,0,0,0.08) inset;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .brand-icon-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
            border-radius: 10px 10px 50% 50%;
        }

        .brand-bolt {
            color: #fff !important;
            font-size: 1rem !important;
            text-shadow: 0 1px 6px rgba(255,150,150,0.5);
            position: relative;
            z-index: 1;
            -webkit-text-fill-color: #fff !important;
            background: none !important;
            filter: drop-shadow(0 0 6px rgba(255,255,255,0.7));
        }

        .brand-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.4px;
            text-shadow: 0 1px 12px rgba(255,255,255,0.35);
        }

        .navbar-brand i {
            /* legacy override - no longer used */
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.45rem 1rem !important;
            border-radius: 20px;
            margin: 0 0.15rem;
            backdrop-filter: blur(10px);
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.25);
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255,255,255,0.2);
        }

        .nav-link.text-danger {
            color: rgba(255,255,255,0.9) !important;
        }

        .nav-link.text-danger:hover {
            background: rgba(255, 80, 80, 0.25);
            color: #fff !important;
        }

        .glassmorphism {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .reset-timer-card {
            margin-top: 1.5rem;
            padding: 1.75rem;
            border-radius: 22px;
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow), var(--glass-inset);
            position: relative;
            overflow: hidden;
        }

        .reset-timer-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, transparent 100%);
            border-radius: 22px 22px 60% 60%;
            pointer-events: none;
        }

        .timer-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .timer-header i {
            font-size: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timer-header h3 {
            margin: 0;
            font-size: 1.2rem;
            color: #1a1a2e;
            -webkit-text-fill-color: #1a1a2e;
            font-weight: 700;
        }

        .timer-header p {
            margin: 0;
            color: #4a4a6a;
            -webkit-text-fill-color: #4a4a6a;
            font-size: 0.9rem;
        }

        .countdown-display {
            text-align: center;
            padding: 2rem 1rem;
        }

        .countdown-time {
            font-size: 3rem;
            font-weight: bold;
            color: #1a1a2e;
            -webkit-text-fill-color: #1a1a2e;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            font-family: 'Courier New', monospace;
            letter-spacing: 0.1em;
        }

        .countdown-label {
            margin-top: 0.5rem;
            color: #4a4a6a;
            -webkit-text-fill-color: #4a4a6a;
            font-size: 0.9rem;
        }

        .reset-progress-container {
            width: 100%;
            height: 8px;
            background: rgba(255, 168, 168, 0.15);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .reset-progress {
            height: 100%;
            background: var(--primary-gradient);
            transition: width 1s linear;
            width: 0%;
            box-shadow: 0 0 10px rgba(255, 168, 168, 0.5);
        }

        .reset-info {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(255, 168, 168, 0.08);
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .reset-info i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 0.5rem;
        }

        .reset-info span {
            font-size: 0.9rem;
            color: #4a4a6a;
            -webkit-text-fill-color: #4a4a6a;
        }

        .reset-info div:last-child {
            font-weight: bold;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .reset-countdown {
            animation: pulse 2s ease-in-out infinite;
        }

        .usage-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .usage-section {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            padding: 1.5rem;
            border-radius: 22px;
            box-shadow: var(--glass-shadow), var(--glass-inset);
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            position: relative;
            overflow: hidden;
        }

        .usage-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 40%;
            background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, transparent 100%);
            border-radius: 22px 22px 60% 60%;
            pointer-events: none;
        }

        .usage-section:hover {
            background: var(--glass-bg-light);
            transform: translateY(-3px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
            border-color: rgba(255, 255, 255, 0.82);
        }

        .usage-section h4 {
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-size: 1.05rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .usage-section h4 i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .endpoint-list, .ip-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .endpoint-item, .ip-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: rgba(255, 168, 168, 0.08);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            border: 1px solid rgba(255, 168, 168, 0.2);
            transition: all 0.3s ease;
        }

        .endpoint-item:hover, .ip-item:hover {
            background: rgba(255, 168, 168, 0.15);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(255,168,168,0.15);
        }

        .endpoint-name, .ip-address {
            font-family: 'Courier New', monospace;
            font-weight: 600;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            font-size: 0.9rem;
        }

        .endpoint-count, .ip-count {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .ip-time {
            font-size: 0.75rem;
            color: #7a6f9e;
            -webkit-text-fill-color: #7a6f9e;
            font-style: italic;
        }

        .daily-usage {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .usage-day {
            display: grid;
            grid-template-columns: 70px 1fr 50px;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .usage-day:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .usage-date {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .usage-bar-container {
            background: rgba(255, 168, 168, 0.15);
            border-radius: 10px;
            height: 8px;
            overflow: hidden;
            position: relative;
        }

        .usage-bar {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 10px;
            transition: width 0.6s ease;
            position: relative;
        }

        .usage-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .usage-count {
            font-size: 0.85rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .no-data {
            text-align: center;
            padding: 2rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .no-data-state, .error-state {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--text-secondary);
        }

        .error-state i {
            color: #ff6b6b;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .search-container {
            margin-bottom: 2rem;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            font-size: 1rem;
            transition: all 0.3s ease;
            color: var(--text-primary);
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .search-input::placeholder {
            color: var(--text-secondary);
        }

        .search-input:focus {
            outline: none;
            border-color: rgba(255, 168, 168, 0.7);
            background: var(--glass-bg-light);
            box-shadow: 0 0 0 4px rgba(255, 168, 168, 0.12), var(--glass-shadow), var(--glass-inset);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.2rem;
        }

        .plugin-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            margin-bottom: 1rem;
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .plugin-card:hover {
            background: var(--glass-bg-light);
            transform: translateY(-4px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
            border-color: rgba(255, 255, 255, 0.85);
        }

        .plugin-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.1rem 1.25rem;
            cursor: pointer;
            gap: 0.75rem;
            user-select: none;
        }

        .plugin-left {
            flex: 1;
            min-width: 0;
        }

        .plugin-name {
            font-size: 1rem;
            font-weight: 700;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .plugin-description {
            font-size: 0.82rem;
            color: #7a6f9e;
            -webkit-text-fill-color: #7a6f9e;
            line-height: 1.4;
            margin-bottom: 0.3rem;
        }

        .plugin-type {
            background: var(--primary-gradient);
            color: #fff;
            padding: 0.3rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(133,48,48,0.25);
        }

        .plugin-expand {
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .plugin-expand.expanded {
            transform: rotate(180deg);
        }

        .plugin-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(.23,1,.32,1);
        }

        .plugin-content.expanded {
            max-height: 9999px;
        }

        .plugin-details {
            padding: 0 1.25rem 1.25rem;
            border-top: 1px solid var(--glass-border);
        }

        .plugin-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin: 0.75rem 0;
        }

        .tag {
            background: rgba(133,48,48,0.1);
            color: #853030;
            padding: 0.2rem 0.55rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(133,48,48,0.2);
        }

        .free-tag {
            background: rgba(76,175,80,0.12);
            color: #2e7d32;
            border-color: rgba(76,175,80,0.25);
        }

        .free-badge {
            background: linear-gradient(135deg,#4caf50,#2e7d32);
            color: #fff;
            padding: 0.1rem 0.45rem;
            border-radius: 6px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .plugin-routes {
            font-size: 0.78rem;
            background: rgba(133,48,48,0.07);
            border: 1px solid rgba(133,48,48,0.15);
            border-radius: 8px;
            padding: 0.5rem 0.75rem;
            word-break: break-all;
            color: #853030;
            margin-bottom: 0.75rem;
            transition: background 0.2s;
        }

        .plugin-routes:hover {
            background: rgba(133,48,48,0.13);
        }

        .no-limit-notice {
            background: linear-gradient(135deg,rgba(76,175,80,0.1),rgba(76,175,80,0.05));
            border-left: 4px solid #4caf50;
            padding: 0.75rem 1rem;
            margin-bottom: 0.75rem;
            border-radius: 8px;
        }

        .plugin-form { margin-top: 0.75rem; }

        .form-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .form-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #7a6f9e;
            -webkit-text-fill-color: #7a6f9e;
            margin-bottom: 0.3rem;
        }

        .form-field input {
            width: 100%;
            padding: 0.55rem 0.75rem;
            background: rgba(255,255,255,0.5);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            font-size: 0.85rem;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }

        .form-field input:focus {
            outline: none;
            border-color: rgba(133,48,48,0.5);
            background: rgba(255,255,255,0.7);
        }

        .required { color: #e53935; margin-left: 2px; }

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

        .btn-execute {
            background: var(--primary-gradient);
            color: #fff;
            border: none;
            padding: 0.6rem 1.25rem;
            border-radius: 12px;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: 'Poppins', sans-serif;
        }

        .btn-execute:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(133,48,48,0.35);
        }

        .btn-execute:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-reset {
            background: rgba(255,255,255,0.5);
            color: var(--text-secondary);
            border: 1px solid var(--glass-border);
            padding: 0.6rem 1.1rem;
            border-radius: 12px;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
            font-family: 'Poppins', sans-serif;
        }

        .btn-reset:hover { background: rgba(255,255,255,0.75); }

        .response-container {
            margin-top: 1rem;
            background: rgba(0,0,0,0.04);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            overflow: hidden;
        }

        .response-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0.9rem;
            background: rgba(133,48,48,0.06);
            border-bottom: 1px solid var(--glass-border);
        }

        .response-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .response-status {
            font-size: 0.78rem;
            font-weight: 700;
            padding: 0.15rem 0.5rem;
            border-radius: 6px;
        }

        .copy-btn {
            background: rgba(133,48,48,0.1);
            color: #853030;
            border: 1px solid rgba(133,48,48,0.2);
            padding: 0.25rem 0.6rem;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: background 0.2s;
            font-family: 'Poppins', sans-serif;
        }

        .copy-btn:hover { background: rgba(133,48,48,0.18); }

        .response-body {
            padding: 0.75rem 0.9rem;
            font-size: 0.8rem;
            font-family: 'Inter', monospace;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
            white-space: pre-wrap;
            word-break: break-all;
            max-height: 300px;
            overflow-y: auto;
        }

        .tag-section {
            margin-bottom: 0.75rem;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
        }

        .tag-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 1.1rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }

        .tag-header:hover { background: var(--glass-bg-light); }

        .tag-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
            font-weight: 700;
            color: #2d1f4e;
            -webkit-text-fill-color: #2d1f4e;
        }

        .plugin-count {
            background: var(--primary-gradient);
            color: #fff;
            padding: 0.1rem 0.5rem;
            border-radius: 10px;
            font-size: 0.72rem;
            font-weight: 700;
        }

        .tag-expand {
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: transform 0.3s;
        }

        .tag-expand.expanded { transform: rotate(180deg); }

        .tag-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(.23,1,.32,1);
            padding: 0 0.75rem;
        }

        .tag-content.expanded {
            max-height: 99999px;
            padding: 0.5rem 0.75rem 0.75rem;
        }

        .no-limit-plugin { border-left: 3px solid rgba(76,175,80,0.5); }

        .plugin-card *:not(.plugin-type):not(.free-badge):not(.plugin-count):not(.btn-execute):not(.endpoint-count):not(.ip-count),
        .reset-timer-card *:not(.reset-countdown),
        .endpoint-item *:not(.endpoint-count),
        .ip-item *:not(.ip-count) {
            -webkit-text-fill-color: unset;
        }

        .plugin-card .plugin-name,
        .plugin-card .plugin-description,
        .plugin-card .tag-title,
        .plugin-card .form-title,
        .plugin-card .response-title,
        .plugin-card .response-body,
        .plugin-card label,
        .plugin-card input,
        .plugin-card .plugin-routes,
        .endpoint-name, .ip-address, .ip-time {
            -webkit-text-fill-color: initial;
            color: inherit;
        }

        .plugin-info {
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 500;
        }

        .user-item {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            padding: 1.5rem;
            border-radius: 20px;
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .user-item:hover {
            background: var(--glass-bg-light);
            transform: translateY(-3px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
            border-color: rgba(255, 255, 255, 0.85);
        }

        .user-item.temp-banned {
            border-left: 4px solid rgba(255, 193, 7, 0.8);
            background: rgba(255, 248, 200, 0.45);
        }

        .user-item.banned {
            border-left: 4px solid rgba(220, 53, 69, 0.8);
            background: rgba(255, 220, 220, 0.38);
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .user-details {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .user-email {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .user-role {
            background: rgba(255, 168, 168, 0.15);
            backdrop-filter: blur(5px);
            color: var(--text-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(255, 168, 168, 0.3);
        }

        .premium-badge {
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 237, 78, 0.3));
            backdrop-filter: blur(5px);
            color: rgba(255, 215, 0, 1);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        }

        .user-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.75rem;
        }

        .ban-info {
            background: rgba(255, 193, 7, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 193, 7, 0.3);
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.85rem;
            color: rgba(255, 193, 7, 0.9);
            margin-top: 0.5rem;
        }

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

        .pagination-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            margin-top: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .page-info {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .users-pagination-info {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-align: center;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            border: 1px solid rgba(255,168,168,0.3);
            box-shadow: 0 4px 16px rgba(255,168,168,0.35);
        }

        .btn-primary:hover:not(:disabled) {
            background: linear-gradient(135deg, #ff9898 0%, #7b87ff 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,168,168,0.45);
        }

        .btn-secondary {
            background: rgba(108, 117, 125, 0.8);
            color: white;
            border: 1px solid rgba(108, 117, 125, 0.3);
        }

        .btn-secondary:hover:not(:disabled) {
            background: rgba(108, 117, 125, 1);
            transform: translateY(-1px);
        }

        .btn-warning {
            background: rgba(255, 193, 7, 0.8);
            color: rgba(133, 100, 4, 1);
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        .btn-warning:hover:not(:disabled) {
            background: rgba(255, 193, 7, 1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        }

        .btn-success {
            background: rgba(40, 167, 69, 0.8);
            color: white;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .btn-success:hover:not(:disabled) {
            background: rgba(40, 167, 69, 1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }

        .btn-danger {
            background: rgba(220, 53, 69, 0.8);
            color: white;
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        .btn-danger:hover:not(:disabled) {
            background: rgba(220, 53, 69, 1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }

        .no-users-state {
            text-align: center;
            padding: 3rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .admin-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            border-radius: 22px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            box-shadow: var(--glass-shadow), var(--glass-inset);
            position: relative;
            overflow: hidden;
        }

        .admin-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 42%;
            background: linear-gradient(180deg, rgba(255,255,255,0.36) 0%, transparent 100%);
            border-radius: 22px 22px 60% 60%;
            pointer-events: none;
        }

        .admin-card:hover {
            background: var(--glass-bg-light);
            transform: translateY(-3px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
            border-color: rgba(255, 255, 255, 0.82);
        }

        .admin-card h3 {
            color: #1a1a2e;
            -webkit-text-fill-color: #1a1a2e;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
        }

        .admin-card h3 i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.1rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            padding: 1.75rem 1.5rem;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            text-align: center;
            transition: all 0.38s cubic-bezier(.23,1,.32,1);
            box-shadow: var(--glass-shadow), var(--glass-inset);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 44%;
            background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0) 100%);
            border-radius: 20px 20px 60% 60%;
            pointer-events: none;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 10%; right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
        }

        .stat-card:hover {
            background: var(--glass-bg-light);
            transform: translateY(-5px);
            box-shadow: var(--glass-shadow-hover), var(--glass-inset);
            border-color: rgba(255, 255, 255, 0.85);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: #1a1a2e;
            -webkit-text-fill-color: #1a1a2e;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group .required {
            color: #e53935;
            -webkit-text-fill-color: #e53935;
            margin-left: 0.25rem;
        }

        .form-group input,
        .form-group select {
            padding: 0.75rem;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            color: #1a1a2e;
            -webkit-text-fill-color: #1a1a2e;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: var(--glass-inset);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(255, 168, 168, 0.7);
            background: var(--glass-bg-light);
            box-shadow: 0 0 0 3px rgba(255, 168, 168, 0.12), var(--glass-inset);
        }

        .form-group input::placeholder {
            color: #7a6f9e;
        }

        .main-content {
            margin-left: 280px;
            transition: margin-left 0.3s ease;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        @media (max-width: 768px) {
            .countdown-time {
                font-size: 2rem;
            }

            .reset-timer-card {
                padding: 1rem;
            }

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

            .usage-day {
                grid-template-columns: 60px 1fr 40px;
                gap: 0.5rem;
            }

            .user-item {
                flex-direction: column;
                gap: 1rem;
            }

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

            .pagination-controls {
                flex-direction: column;
                gap: 1rem;
            }

            .dashboard-container {
                flex-direction: column;
            }

            .sidebar {
                width: 85% !important;
                max-width: 320px !important;
                position: fixed !important;
                height: 100vh !important;
                transform: translateX(-100%) !important;
                z-index: 1002 !important;
                left: 0 !important;
                top: 0 !important;
            }

            .sidebar.show {
                transform: translateX(0) !important;
            }

            .sidebar-overlay {
                display: block;
            }

            .main-content {
                margin-left: 0 !important;
            }

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

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

        .section h2 {
            color: var(--text-primary);
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }

        .section > p {
            color: var(--text-secondary);
        }

        .pagination-controls {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount)) saturate(200%);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            box-shadow: var(--glass-shadow), var(--glass-inset);
        }

        .page-info {
            color: var(--text-primary);
            font-weight: 600;
        }

        .users-pagination-info {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-align: center;
            padding: 0.5rem;
            background: rgba(255, 168, 168, 0.08);
            border-radius: 8px;
        }

        .no-users-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        .limit-info {
            background: rgba(255, 168, 168, 0.15);
            color: var(--text-primary);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }

        .user-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .ban-info {
            background: rgba(255, 193, 7, 0.12);
            border: 1px solid rgba(255, 193, 7, 0.3);
            padding: 0.75rem;
            border-radius: 10px;
            font-size: 0.85rem;
            color: #8a6600;
            margin-top: 0.5rem;
        }

        .error-state i {
            background: var(--danger-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .main-content {
            background: transparent;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .form-group small {
            color: #4a4a6a;
            -webkit-text-fill-color: #4a4a6a;
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }

        /* ── Role Badges ── */
        .badge-role {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: 'Poppins', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 100px;
            border: 1px solid;
            position: relative;
            z-index: 1;
            transition: box-shadow 0.3s, transform 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
            line-height: 1.2;
        }
        .badge-role:hover { transform: scale(1.05); }

        .badge-role.free    { background: rgba(255,255,255,0.35); color: #4a4a6a; -webkit-text-fill-color: #4a4a6a; border-color: rgba(141,150,255,0.3); box-shadow: 0 2px 8px rgba(141,150,255,0.15); }
        .badge-role.cheap   { background: linear-gradient(135deg,rgba(184,127,13,.95),rgba(184,127,13,.75)); color: #fff; -webkit-text-fill-color: #fff; border-color: rgba(184,127,13,.4); box-shadow: 0 2px 8px rgba(184,127,13,.3); }
        .badge-role.premium { background: linear-gradient(135deg,#ffa8a8,#8d96ff); color: #fff; -webkit-text-fill-color: #fff; border-color: rgba(255,168,168,.3); box-shadow: 0 2px 8px rgba(255,168,168,.3); }
        .badge-role.vip     { background: linear-gradient(135deg,rgba(255,191,0,.95),rgba(255,191,0,.75)); color: #1a1a1a; -webkit-text-fill-color: #1a1a1a; border-color: rgba(255,191,0,.4); box-shadow: 0 2px 8px rgba(255,191,0,.3); font-weight: 700; }
        .badge-role.supreme { background: linear-gradient(135deg,rgba(238,62,75,.95),rgba(238,62,75,.75)); color: #fff; -webkit-text-fill-color: #fff; border-color: rgba(238,62,75,.4); box-shadow: 0 2px 8px rgba(238,62,75,.3); font-weight: 700; }
        .badge-role.admin   { background: linear-gradient(135deg,#1a1a2e,#2d1f4e); color: #fff; -webkit-text-fill-color: #fff; border-color: rgba(141,150,255,.5); box-shadow: 0 2px 12px rgba(141,150,255,.4); font-weight: 700; }
