/* SERVIDORES PAGE */

.breadcrumb {
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* SERVERS GRID */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.server-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover::before {
    opacity: 1;
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.server-icon {
    font-size: 48px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-online {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.status-offline {
    background: rgba(255, 51, 102, 0.15);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.status-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.server-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.server-type {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-details {
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.detail-item .label {
    color: var(--text-secondary);
    font-size: 14px;
}

.detail-item .value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.server-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 12px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.metric-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.metric-value {
    text-align: right;
    font-size: 13px;
    font-weight: bold;
    color: var(--accent-blue);
}
