/* ============================================
   Server Monitor Section Styles
   ============================================ */

.server-monitor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.server-monitor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.server-monitor-section .container {
    position: relative;
    z-index: 1;
}

.server-monitor-section .section-header {
    margin-bottom: 50px;
}

.server-monitor-section .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.server-monitor-section .section-subtitle {
    color: #a0aec0;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .server-monitor-section {
        padding: 60px 0;
    }

    .server-monitor-section .section-title {
        font-size: 2rem;
    }

    .server-monitor-section .section-subtitle {
        font-size: 1rem;
    }
}

/* Integration with existing theme sections */
.server-monitor-section+section {
    margin-top: 0;
}