* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #0b0d10;
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 80px;
}

.text-neon {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.6);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    background-color: #101418;
    border-bottom: 2px solid #00ffcc;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand i, .nav-brand span {
    color: #00ffcc;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    transition: 0.3s;
}

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

.nav-links a:hover, .nav-links a.active-page {
    color: #00ffcc;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: #00ffcc;
    transition: 0.3s;
}

.content-section {
    padding: 140px 8% 60px 8%;
    min-height: 85vh;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 i {
    color: #00ffcc;
}

.accent-bar {
    height: 4px;
    width: 60px;
    background-color: #00ffcc;
    margin-top: 10px;
    box-shadow: 0 0 5px #00ffcc;
}

/* MONITORING SYSTEM BOARD STYLE */
.status-board {
    background-color: #14191f;
    border: 1px solid #1f2a36;
    border-radius: 8px;
    padding: 35px;
    margin-top: 30px;
}

.status-main {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #202b36;
    padding-bottom: 25px;
}

.pulse-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.status-pulse {
    width: 16px;
    height: 16px;
    background-color: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc;
    animation: ringPulse 2s infinite ease-out;
}

.status-main h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.status-main p {
    color: #8892b0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background-color: #0b0d10;
    border: 1px solid #202b36;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.metric-title {
    display: block;
    font-size: 0.9rem;
    color: #6c7d93;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-container {
    margin-top: 40px;
}

.btn-cyber {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #00ffcc;
    color: #0b0d10;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-cyber:hover {
    background-color: #ffffff;
    transform: scale(1.02);
}

.cyber-footer {
    background-color: #07090b;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #101418;
    color: #6c7d93;
    font-size: 0.9rem;
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .navbar { height: 70px; padding: 0 5%; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: #101418;
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.4s;
    }
    .nav-menu.active { left: 0; }
    .nav-links { flex-direction: column; align-items: center; padding-top: 40px; gap: 30px; }
    .nav-links a { font-size: 1.4rem; width: 100%; justify-content: center; }
    .content-section { padding: 100px 5% 40px 5%; }
    .section-header h2 { font-size: 1.7rem; }
    .status-main { flex-direction: column; text-align: center; gap: 15px; }
}
