body {
    font-family: 'Inter', sans-serif;
    color: #2b3036;
}

/* Primary Color Theme based on typical Hosting sites */
:root {
    --bs-primary: #673de6;
    --bs-primary-rgb: 103, 61, 230;
}

.btn-primary {
    background-color: #673de6;
    border-color: #673de6;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5630c5;
    border-color: #5630c5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.4);
}

.btn-outline-primary {
    color: #673de6;
    border-color: #673de6;
}

.btn-outline-primary:hover {
    background-color: #673de6;
    color: #fff;
}

.bg-primary {
    background-color: #673de6 !important;
}

.text-primary {
    color: #673de6 !important;
}

/* Hero Section */
.hero-section {
    background-color: #f4f5ff;
    overflow: hidden;
}

.hero-image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #eef0ff 0%, #d8dcff 100%);
    border: 1px solid rgba(103, 61, 230, 0.1);
}

/* Domain Search Input */
.domain-search form {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.domain-search form:focus-within {
    border-color: #a48df3;
}

.domain-search input:focus {
    box-shadow: none;
}

/* Animations */
.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #673de6 !important;
}

/* AUTH PAGES CSS */
body.auth-body {
            font-family: 'Inter', sans-serif;
            background-color: #0f0a1c;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }
        .login-card {
            background: rgba(26, 21, 58, 0.6);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 12px;
            padding: 2rem;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .form-control {
            background-color: rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
        }
        .form-control:focus {
            background-color: rgba(0,0,0,0.4);
            border-color: #7C4DFF;
            box-shadow: 0 0 0 0.25rem rgba(124, 77, 255, 0.25);
            color: #fff;
        }
        .btn-primary {
            background-color: #7C4DFF;
            border-color: #7C4DFF;
        }
        .btn-primary:hover {
            background-color: #651fff;
            border-color: #651fff;
        }
        a {
            color: #b388ff;
            text-decoration: none;
        }
        a:hover {
            color: #d1c4e9;
        }


/* MAIN DASHBOARD CSS */
:root {
            --bg-deep: #0f0a1c;
            --bg-deep-2: #090614;
            --panel: rgba(26, 21, 58, 0.6);
            --panel-line: rgba(124, 77, 255, 0.3);
            --purple: #7C4DFF;
            --purple-dim: #5B3AD1;
            --lime: #B4FF39;
            --text-main: #F1EEFB;
            --text-muted: #8A84AC;

            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html[data-theme="cyberpunk"] {
            --bg-deep: #050510;
            --bg-deep-2: #020205;
            --panel: rgba(10, 10, 20, 0.8);
            --panel-line: rgba(0, 255, 204, 0.5);
            --purple: #ff007f;
            --purple-dim: #b30059;
            --lime: #00ffcc;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
        }

        html[data-theme="glass"] {
            --bg-deep: #f0f2f5;
            --bg-deep-2: #e1e4e8;
            --panel: rgba(255, 255, 255, 0.6);
            --panel-line: rgba(0, 0, 0, 0.1);
            --purple: #2563eb;
            --purple-dim: #1d4ed8;
            --lime: #e11d48;
            --text-main: #1f2937;
            --text-muted: #6b7280;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
            font-family: var(--font-body);
            color: var(--text-main);
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background glows */
        body::before, body::after {
            content: '';
            position: fixed;
            width: 50vw;
            height: 50vw;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            animation: floatGlow 15s ease-in-out infinite alternate;
        }

        body::before {
            background: rgba(124, 77, 255, 0.15);
            top: -10%;
            left: -10%;
        }

        body::after {
            background: rgba(180, 255, 57, 0.08);
            bottom: -10%;
            right: -10%;
            animation-delay: -5s;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(10%, 10%) scale(1.2); }
        }

        /* -------- navbar -------- */
        .glass-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 10, 28, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(124, 77, 255, 0.2);
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .nav-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-brand span {
            color: var(--purple);
        }

        .nav-links {
            display: flex;
            gap: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--lime);
        }

        .nav-action {
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-action:hover {
            background: rgba(124, 77, 255, 0.3);
            border-color: var(--purple);
            color: #fff;
        }

        @media (max-width: 576px) {
            .nav-links { display: none; }
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 110px 24px 32px;
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        /* -------- hero -------- */
        .hero {
            width: 100%;
            text-align: center;
            margin-bottom: 36px;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .avatar {
            width: 84px;
            height: 84px;
            margin: 0 auto 24px;
            border-radius: 24px;
            background: linear-gradient(145deg, var(--purple), var(--purple-dim));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 36px;
            color: var(--text-main);
            box-shadow: 0 15px 35px -10px rgba(124, 77, 255, 0.6);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
        }

        .avatar:hover {
            transform: scale(1.08) rotate(-5deg);
            box-shadow: 0 20px 45px -10px rgba(124, 77, 255, 0.8);
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--lime);
            background: rgba(180, 255, 57, 0.1);
            border: 1px solid rgba(180, 255, 57, 0.3);
            border-radius: 999px;
            padding: 6px 14px;
            margin-bottom: 18px;
            box-shadow: 0 0 15px rgba(180, 255, 57, 0.1);
        }

        .status-pill::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--lime);
            box-shadow: 0 0 10px var(--lime);
            animation: pulseLime 2s infinite;
        }

        @keyframes pulseLime {
            0% { box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(180, 255, 57, 0); }
            100% { box-shadow: 0 0 0 0 rgba(180, 255, 57, 0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(32px, 6vw, 44px);
            margin: 0 0 12px;
            color: #ffffff;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .hero p {
            margin: 0;
            color: var(--text-muted);
            font-size: 16px;
            max-width: 460px;
            margin-inline: auto;
            line-height: 1.5;
        }

        .hero-search {
            margin-top: 24px;
            display: flex;
            justify-content: center;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
        }

        .hero-search form {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 99px;
            padding: 4px;
            width: 100%;
            max-width: 460px;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        .hero-search form:focus-within {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--purple);
            box-shadow: 0 0 20px rgba(124, 77, 255, 0.2);
        }

        .hero-search input {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-family: var(--font-body);
            font-size: 15px;
            padding: 10px 20px;
            width: 100%;
            outline: none;
        }

        .hero-search input::placeholder {
            color: rgba(138, 132, 172, 0.6);
        }

        .hero-search button {
            background: var(--purple);
            color: #fff;
            border: none;
            border-radius: 99px;
            padding: 10px 24px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hero-search button:hover {
            background: var(--lime);
            color: var(--bg-deep);
            transform: scale(1.02);
        }

        /* -------- console panel -------- */
        .console-wrap {
            width: 100%;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
        }

        .console {
            background: var(--panel);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--panel-line);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255,255,255,0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .console:hover {
            border-color: rgba(124, 77, 255, 0.5);
            transform: translateY(-2px);
        }

        .console-topbar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: rgba(15, 12, 30, 0.8);
            border-bottom: 1px solid var(--panel-line);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            transition: filter 0.2s ease;
        }

        .console-topbar:hover .dot {
            filter: brightness(1.2);
        }

        .dot-a { background: #FF5F57; }
        .dot-b { background: #FEBC2E; }
        .dot-c { background: #28C840; }

        .topbar-label {
            margin-left: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
        }

        .topbar-label::after {
            content: '_';
            animation: blink 1s step-end infinite;
            margin-left: 4px;
            color: var(--lime);
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        .record-columns {
            padding: 18px 30px 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            gap: 16px;
        }

        .col-type { width: 80px; }
        .col-label { width: 160px; }
        .col-url { flex: 1; }
        .col-arrow { width: 24px; }

        .records {
            display: flex;
            flex-direction: column;
            padding: 4px 16px 20px;
        }

        .record-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-main);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            animation: riseList 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            border: 1px solid transparent;
        }

        .record-row:hover {
            background: rgba(124, 77, 255, 0.15);
            border-color: rgba(124, 77, 255, 0.3);
            transform: translateX(6px) scale(1.01);
            box-shadow: 0 10px 20px -10px rgba(124, 77, 255, 0.2);
        }

        .rec-index {
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(138, 132, 172, 0.6);
            width: 24px;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .record-row:hover .rec-index {
            color: var(--lime);
        }

        .rec-badge {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--purple);
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 8px;
            padding: 5px 10px;
            width: 80px;
            text-align: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .record-row:hover .rec-badge {
            background: var(--purple);
            color: #fff;
            border-color: var(--purple);
        }

        .rec-label {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 16px;
            width: 160px;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .rec-url {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .record-row:hover .rec-url {
            color: #d2c8f0;
        }

        .rec-arrow {
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
            flex-shrink: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
        }

        .record-row:hover .rec-arrow {
            color: var(--bg-deep);
            background: var(--lime);
            transform: translateX(8px) rotate(-45deg);
        }

        /* -------- NEW: about panel -------- */
        .about-wrap {
            margin-top: 28px;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
        }

        .about-content {
            padding: 26px 30px;
            font-size: 15.5px;
            line-height: 1.7;
            color: var(--text-muted);
        }

        .about-content strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .sys-highlight {
            color: var(--lime);
            font-family: var(--font-mono);
            font-size: 13px;
            background: rgba(180, 255, 57, 0.12);
            padding: 3px 8px;
            border-radius: 6px;
            border: 1px solid rgba(180, 255, 57, 0.2);
        }

        /* -------- page footer -------- */
        .page-footer {
            margin-top: 40px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(138, 132, 172, 0.7);
            text-align: center;
            animation: rise 0.8s ease 0.9s both;
        }

        .page-footer a {
            color: var(--purple);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }

        .page-footer a:hover {
            color: var(--lime);
            text-shadow: 0 0 8px rgba(180, 255, 57, 0.4);
        }

        /* -------- animation -------- */
        @keyframes rise {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes riseList {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .record-row:nth-child(1) { animation-delay: 0.2s; }
        .record-row:nth-child(2) { animation-delay: 0.3s; }
        .record-row:nth-child(3) { animation-delay: 0.4s; }
        .record-row:nth-child(4) { animation-delay: 0.5s; }
        .record-row:nth-child(5) { animation-delay: 0.6s; }

        /* -------- responsive -------- */
        @media (max-width: 576px) {
            .hero h1 { font-size: 28px; }
            .record-row { flex-wrap: wrap; gap: 8px 12px; padding: 14px; }
            .rec-label { width: auto; font-size: 15px; }
            .rec-url { width: 100%; order: 3; margin-left: 40px; font-size: 12px; }
            .rec-arrow { background: transparent; }
            .record-row:hover .rec-arrow { transform: translateX(4px) rotate(0deg); background: transparent; color: var(--lime); }
        }

        /* -------- accessibility -------- */
        a:focus-visible, .record-row:focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 4px;
            border-radius: 12px;
        }

        @media (prefers-reduced-motion: reduce) {
            .record-row, .rec-arrow, .hero, .console-wrap, .page-footer, body::before, body::after, .avatar, .topbar-label::after {
                transition: none !important;
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }


/* CSS FROM digital/passwords.php */
:root {
            --bg-deep: #0f0a1c;
            --bg-deep-2: #090614;
            --panel: rgba(26, 21, 58, 0.6);
            --panel-line: rgba(124, 77, 255, 0.3);
            --purple: #7C4DFF;
            --purple-dim: #5B3AD1;
            --lime: #B4FF39;
            --text-main: #F1EEFB;
            --text-muted: #8A84AC;

            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html[data-theme="cyberpunk"] {
            --bg-deep: #050510;
            --bg-deep-2: #020205;
            --panel: rgba(10, 10, 20, 0.8);
            --panel-line: rgba(0, 255, 204, 0.5);
            --purple: #ff007f;
            --purple-dim: #b30059;
            --lime: #00ffcc;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
            font-family: var(--font-body);
            color: var(--text-main);
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background glows */
        body::before, body::after {
            content: '';
            position: fixed;
            width: 50vw;
            height: 50vw;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            animation: floatGlow 15s ease-in-out infinite alternate;
        }

        body::before {
            background: rgba(0, 255, 204, 0.15);
            top: -10%;
            left: -10%;
        }

        body::after {
            background: rgba(124, 77, 255, 0.08);
            bottom: -10%;
            right: -10%;
            animation-delay: -5s;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(10%, 10%) scale(1.2); }
        }

        /* -------- navbar -------- */
        .glass-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 10, 28, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(124, 77, 255, 0.2);
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-brand span {
            color: #00ffcc;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--lime);
        }
        
        .nav-action {
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-action:hover {
            background: rgba(124, 77, 255, 0.3);
            border-color: var(--purple);
            color: #fff;
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 110px 24px 32px;
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        /* -------- console panel -------- */
        .console-wrap {
            width: 100%;
        }

        .console {
            background: var(--panel);
            backdrop-filter: blur(12px);
            border: 1px solid var(--panel-line);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255,255,255,0.05);
        }

        .console-topbar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: rgba(15, 12, 30, 0.8);
            border-bottom: 1px solid var(--panel-line);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .dot-a { background: #FF5F57; }
        .dot-b { background: #FEBC2E; }
        .dot-c { background: #28C840; }

        .topbar-label {
            margin-left: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        .record-columns {
            padding: 18px 30px 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            gap: 16px;
        }

        .col-site { width: 200px; }
        .col-user { width: 200px; }
        .col-pass { flex: 1; }
        .col-actions { width: 120px; text-align: right; }

        .records {
            display: flex;
            flex-direction: column;
            padding: 4px 16px 20px;
        }

        .record-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-radius: 12px;
            color: var(--text-main);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .record-row:hover {
            background: rgba(0, 255, 204, 0.1);
            border-color: rgba(0, 255, 204, 0.2);
            transform: translateX(4px);
        }

        .rec-site {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 15px;
            width: 200px;
            flex-shrink: 0;
            word-break: break-all;
        }

        .rec-user {
            font-family: var(--font-mono);
            font-size: 13px;
            width: 200px;
            flex-shrink: 0;
            color: #d2c8f0;
        }

        .rec-pass {
            font-family: var(--font-mono);
            font-size: 14px;
            flex: 1;
            letter-spacing: 0.2em;
        }

        /* -------- form elements -------- */
        .form-control, .form-select, .form-control:focus, .form-select:focus {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
        }

        .copy-btn {
            background: rgba(0, 255, 204, 0.15);
            color: #00ffcc;
            border: 1px solid rgba(0, 255, 204, 0.3);
            border-radius: 6px;
            padding: 4px 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            transition: all 0.2s;
        }
        .copy-btn:hover {
            background: #00ffcc;
            color: #000;
        }


/* CSS FROM digital/manage_users.php */
:root {
            --bg-deep: #0f0a1c;
            --bg-deep-2: #090614;
            --panel: rgba(26, 21, 58, 0.6);
            --panel-line: rgba(124, 77, 255, 0.3);
            --purple: #7C4DFF;
            --purple-dim: #5B3AD1;
            --lime: #B4FF39;
            --text-main: #F1EEFB;
            --text-muted: #8A84AC;

            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html[data-theme="cyberpunk"] {
            --bg-deep: #050510;
            --bg-deep-2: #020205;
            --panel: rgba(10, 10, 20, 0.8);
            --panel-line: rgba(0, 255, 204, 0.5);
            --purple: #ff007f;
            --purple-dim: #b30059;
            --lime: #00ffcc;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
        }

        html[data-theme="glass"] {
            --bg-deep: #f0f2f5;
            --bg-deep-2: #e1e4e8;
            --panel: rgba(255, 255, 255, 0.6);
            --panel-line: rgba(0, 0, 0, 0.1);
            --purple: #2563eb;
            --purple-dim: #1d4ed8;
            --lime: #e11d48;
            --text-main: #1f2937;
            --text-muted: #6b7280;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
            font-family: var(--font-body);
            color: var(--text-main);
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background glows */
        body::before, body::after {
            content: '';
            position: fixed;
            width: 50vw;
            height: 50vw;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            animation: floatGlow 15s ease-in-out infinite alternate;
        }

        body::before {
            background: rgba(124, 77, 255, 0.15);
            top: -10%;
            left: -10%;
        }

        body::after {
            background: rgba(180, 255, 57, 0.08);
            bottom: -10%;
            right: -10%;
            animation-delay: -5s;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(10%, 10%) scale(1.2); }
        }

        /* -------- navbar -------- */
        .glass-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 10, 28, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(124, 77, 255, 0.2);
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .nav-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-brand span {
            color: var(--purple);
        }

        .nav-links {
            display: flex;
            gap: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--lime);
        }

        .nav-action {
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-action:hover {
            background: rgba(124, 77, 255, 0.3);
            border-color: var(--purple);
            color: #fff;
        }

        @media (max-width: 576px) {
            .nav-links { display: none; }
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 110px 24px 32px;
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        /* -------- console panel -------- */
        .console-wrap {
            width: 100%;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
        }

        .console {
            background: var(--panel);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--panel-line);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255,255,255,0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .console:hover {
            border-color: rgba(124, 77, 255, 0.5);
            transform: translateY(-2px);
        }

        .console-topbar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            background: rgba(15, 12, 30, 0.8);
            border-bottom: 1px solid var(--panel-line);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            transition: filter 0.2s ease;
        }

        .console-topbar:hover .dot {
            filter: brightness(1.2);
        }

        .dot-a { background: #FF5F57; }
        .dot-b { background: #FEBC2E; }
        .dot-c { background: #28C840; }

        .topbar-label {
            margin-left: 12px;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
        }

        .topbar-label::after {
            content: '_';
            animation: blink 1s step-end infinite;
            margin-left: 4px;
            color: var(--lime);
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        .record-columns {
            padding: 18px 30px 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            gap: 16px;
        }

        .col-id { width: 40px; }
        .col-username { width: 200px; }
        .col-role { width: 120px; }
        .col-date { flex: 1; }
        .col-actions { width: 80px; text-align: right; }

        .records {
            display: flex;
            flex-direction: column;
            padding: 4px 16px 20px;
        }

        .record-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-radius: 12px;
            color: var(--text-main);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid transparent;
        }

        .record-row:hover {
            background: rgba(124, 77, 255, 0.15);
            border-color: rgba(124, 77, 255, 0.3);
            transform: translateX(6px) scale(1.01);
            box-shadow: 0 10px 20px -10px rgba(124, 77, 255, 0.2);
        }

        .rec-id {
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(138, 132, 172, 0.6);
            width: 40px;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .rec-username {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 16px;
            width: 200px;
            flex-shrink: 0;
        }

        .rec-role {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--purple);
            background: rgba(124, 77, 255, 0.15);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-radius: 8px;
            padding: 5px 10px;
            width: 120px;
            text-align: center;
            flex-shrink: 0;
            text-transform: uppercase;
        }

        .rec-date {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            flex: 1;
            white-space: nowrap;
        }

        /* -------- page footer -------- */
        .page-footer {
            margin-top: 40px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(138, 132, 172, 0.7);
            text-align: center;
            animation: rise 0.8s ease 0.9s both;
        }

        /* -------- animation -------- */
        @keyframes rise {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* -------- responsive -------- */
        @media (max-width: 576px) {
            .record-row { flex-wrap: wrap; gap: 8px 12px; padding: 14px; }
            .col-username { width: auto; }
            .col-role { width: auto; }
            .col-date { display: none; }
        }

