/* ================================
   SERVER INFO - MODERN DESIGN V1
   Account Management Style
   ================================ */

:root {
    --primary-bg: #0f141a;
    --secondary-bg: #1a2332;
    --border-color: #2a3440;
    --accent-cyan: #00ffaa;
    --text-light: #e6f8ff;
    --text-muted: #a8b3c2;
    --error-red: #ff4444;
    --success-green: #7AF972;
    --warning-yellow: #F9F572;
    --server-blue: #4a90e2;
    --server-purple: #9b59b6;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

.serverinfo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ================================
   HEADER
   ================================ */

.serverinfo-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a2332 0%, #0f141a 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.serverinfo-logo {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 170, 0.3));
}

.serverinfo-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0, 255, 170, 0.2);
}

.serverinfo-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ================================
   INFO BOX
   ================================ */

.info-box {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 255, 170, 0.05) 100%);
    border: 1px solid rgba(0, 255, 170, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.info-content {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ================================
   STATUS BADGE
   ================================ */

.status-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(122, 249, 114, 0.2) 0%, rgba(122, 249, 114, 0.1) 100%);
    border: 1px solid var(--success-green);
    border-radius: 20px;
    color: var(--success-green);
    font-weight: 600;
    font-size: 14px;
}

/* Removido: .status-online::before com bolinha pulsante */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================================
   INFO SECTION
   ================================ */

.info-section {
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
}

.section-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.4));
}

.section-content {
    padding: 24px;
}

/* ================================
   INFO TABLE
   ================================ */

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.info-table tr {
    transition: all 0.2s ease;
}

.info-table tr:hover {
    background: rgba(0, 255, 170, 0.05);
}

.info-table td {
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    width: 50%;
}

.info-table td:last-child {
    color: var(--accent-cyan);
}

.info-table a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-table a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* ================================
   FEATURES BOX
   ================================ */

.features-box {
    background: var(--primary-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.features-content {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.features-content strong {
    color: var(--accent-cyan);
    font-size: 16px;
    display: block;
    margin: 16px 0 8px 0;
}

.features-content strong:first-child {
    margin-top: 0;
}

/* ================================
   STATS GRID
   ================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
    border-color: var(--accent-cyan);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.3));
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.4s ease-out;
}

.info-section {
    animation: slideInUp 0.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.info-section:nth-child(1) { animation-delay: 0s; }
.info-section:nth-child(2) { animation-delay: 0.05s; }
.info-section:nth-child(3) { animation-delay: 0.1s; }
.info-section:nth-child(4) { animation-delay: 0.15s; }
.info-section:nth-child(5) { animation-delay: 0.2s; }
.info-section:nth-child(6) { animation-delay: 0.25s; }
.info-section:nth-child(7) { animation-delay: 0.3s; }

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media screen and (max-width: 1024px) {
    .serverinfo-container {
        padding: 16px;
    }
    
    .serverinfo-header {
        padding: 30px 16px;
    }
    
    .serverinfo-title {
        font-size: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .serverinfo-title {
        font-size: 26px;
    }
    
    .serverinfo-subtitle {
        font-size: 14px;
    }
    
    .section-header {
        padding: 16px 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-content {
        padding: 16px;
    }
    
    .info-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .serverinfo-container {
        padding: 12px;
    }
    
    .serverinfo-header {
        padding: 24px 12px;
    }
    
    .serverinfo-logo {
        font-size: 48px;
    }
    
    .serverinfo-title {
        font-size: 22px;
    }
    
    .serverinfo-subtitle {
        font-size: 13px;
    }
    
    .info-box {
        padding: 16px;
    }
    
    .info-content {
        font-size: 14px;
    }
    
    .info-section {
        margin-bottom: 20px;
    }
    
    .section-header {
        padding: 14px 16px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .section-icon {
        font-size: 20px;
    }
    
    .section-content {
        padding: 12px;
    }
    
    .info-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .info-table td:first-child {
        width: 40%;
    }
    
    .features-box {
        padding: 16px;
    }
    
    .features-content {
        font-size: 13px;
    }
    
    .features-content strong {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-icon {
        font-size: 28px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ================================
   SERVER DESCRIPTION
   ================================ */

.server-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
