:root {
    --primary: #ff6b00;
    --primary-hover: #ff8c00;
    --bg-dark: #0f0f0f;
    --bg-card: #1b1b1b;
    --border-color: #2c2c2c;
    --text-main: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(27, 27, 27, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Glass Effect Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Primary Buttons */
.btn-mk-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-hover));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-mk-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
    color: white;
}

/* Navbar Styling */
.navbar-mk {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-mk .navbar-brand {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.5rem;
}

.navbar-mk .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-mk .nav-link:hover {
    color: var(--primary) !important;
}

/* Server Status Animation */
.status-pulse {
    width: 12px;
    height: 12px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #00ff88;
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Table Styling for Dashboards */
.table-mk {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-main);
    --bs-table-border-color: var(--border-color);
}