body {
            background-color: #0a0a0a;
            font-family: 'Inter', sans-serif;
            color: #e0e0e0;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        /* Navbar */
        .m2m-nav {
            background: rgba(10, 10, 10, 0.9);
            border-bottom: 1px solid #333;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .m2m-nav-logo {
            font-size: 24px;
            font-weight: 800;
            color: #00ffcc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .m2m-nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            margin-left: 24px;
            transition: color 0.2s;
        }

        .m2m-nav-links a:hover {
            color: #00ffcc;
        }

        .dashboard-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 300px 1fr 350px;
            gap: 24px;
        }

        /* Overlord Panel */
        .overlord-panel {
            background: #111;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 24px;
            height: fit-content;
        }

        .overlord-avatar {
            font-size: 60px;
            text-align: center;
            margin-bottom: 16px;
        }

        .overlord-panel h2 {
            margin: 0 0 8px 0;
            color: #00ffcc;
            text-align: center;
            font-size: 20px;
        }

        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00ffcc;
            box-shadow: 0 0 10px #00ffcc;
            margin-right: 8px;
        }

        /* Active Workers Grid */
        .workers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .worker-card {
            background: #111;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .worker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #00ffcc;
        }

        .worker-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .worker-avatar {
            font-size: 32px;
            background: #222;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .worker-info h3 {
            margin: 0;
            color: #fff;
        }

        .worker-info p {
            margin: 4px 0 0 0;
            color: #888;
            font-size: 13px;
        }

        .task-box {
            background: #000;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
        }

        .task-running {
            color: #00ffcc;
            margin-bottom: 16px;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: #333;
            border-radius: 2px;
            overflow: hidden;
            margin-top: 8px;
        }

        .progress-fill {
            height: 100%;
            background: #00ffcc;
            transition: width 1s ease-in-out;
        }

        /* Terminal Logs */
        .terminal-panel {
            background: #050505;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 24px;
            font-family: 'JetBrains Mono', monospace;
            height: 600px;
            overflow-y: auto;
        }

        .terminal-panel h3 {
            color: #555;
            margin: 0 0 16px 0;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .log-entry {
            margin-bottom: 12px;
            font-size: 12px;
            line-height: 1.5;
            color: #888;
        }

        .log-entry.success {
            color: #00ffcc;
        }

        .loading-screen {
            text-align: center;
            padding: 100px;
            font-size: 20px;
            font-weight: 800;
            color: #888;
        }

        .hidden {
            display: none !important;
        }

        /* Scrollbar styling for terminal */
        .terminal-panel::-webkit-scrollbar {
            width: 8px;
        }

        .terminal-panel::-webkit-scrollbar-track {
            background: #050505;
        }

        .terminal-panel::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }