/* 服务器列表样式 */

/* 服务器列表容器 */
.servers-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 服务器卡片 */
.server-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.server-card.near-full::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.server-card.full::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.server-card-content {
    padding: 20px 24px;
}

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

.server-info {
    flex: 1;
}

.server-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.server-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.server-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #475569;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.server-tag:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateY(-1px);
}

.server-tag.map {
    background: #e3f2fd;
    color: #1976d2;
}

.server-tag.mode {
    background: #f3e5f5;
    color: #7b1fa2;
}

.server-status-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.server-players {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-count {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    min-width: 70px;
}

.player-progress-container {
    width: 120px;
}

.player-progress {
    height: 12px;
    background: #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-progress-fill {
    height: 100%;
    border-radius: 24px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.player-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 24px;
}

.progress-idle {
    background: linear-gradient(90deg, #10b981, #059669);
}

.progress-near-full {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.progress-full {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.server-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-status-badge.idle {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.server-status-badge.near-full {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.server-status-badge.full {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #991b1b;
}

.server-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-btn {
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: #3a56e4;
    color: #3a56e4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 86, 228, 0.15);
}

.action-btn.connect {
    background: linear-gradient(135deg, #3a56e4, #4f46e5);
    color: white;
    border-color: #3a56e4;
}

.action-btn.connect:hover {
    background: linear-gradient(135deg, #2d47d1, #3730a3);
    border-color: #2d47d1;
    color: white;
    box-shadow: 0 6px 16px rgba(58, 86, 228, 0.25);
}

.action-btn i {
    font-size: 12px;
}

.server-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

.server-time {
    font-family: 'Courier New', monospace;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .servers-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .server-card-content {
        padding: 20px;
    }
    
    .server-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .server-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .server-tags {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .server-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .server-status-section {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .server-players {
        gap: 12px;
    }
    
    .player-count {
        font-size: 14px;
        min-width: 70px;
    }
    
    .player-progress-container {
        max-width: none;
    }
    
    .server-status-badge {
        align-self: flex-start;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .server-actions {
        justify-content: space-between;
        gap: 8px;
    }
    
    .action-btn {
        flex: 1;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .server-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        font-size: 11px;
        padding-top: 8px;
    }
}

@media (max-width: 480px) {
    .server-card-content {
        padding: 16px;
    }
    
    .server-name {
        font-size: 16px;
    }
    
    .server-status-section {
        padding: 8px;
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-btn {
        min-width: 40px;
        padding: 8px;
    }
}

.header-cell i {
    font-size: 12px;
    opacity: 0.6;
}

.header-cell.active i {
    opacity: 1;
}

/* 服务器列表容器 */
.servers-list {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px) saturate(180%);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 服务器项目样式 */
.server-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.1);
}

.server-item:last-child {
    border-bottom: none;
}

.server-main {
    display: grid;
    grid-template-columns: 40px 1fr 150px 100px 120px 100px 80px;
    gap: 20px;
    padding: 25px 35px;
    align-items: center;
}

/* 服务器状态指示器 */
.server-status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.status-low {
    background: radial-gradient(circle, #48bb78 0%, #38a169 100%);
    box-shadow: 0 0 15px rgba(72, 187, 120, 0.5);
}

.status-medium {
    background: radial-gradient(circle, #ed8936 0%, #dd6b20 100%);
    box-shadow: 0 0 15px rgba(237, 137, 54, 0.5);
}

.status-high {
    background: radial-gradient(circle, #f6ad55 0%, #ed8936 100%);
    box-shadow: 0 0 15px rgba(246, 173, 85, 0.5);
}

.status-full {
    background: radial-gradient(circle, #f56565 0%, #e53e3e 100%);
    box-shadow: 0 0 15px rgba(245, 101, 101, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* 服务器名称 */
.server-name {
    font-weight: 500;
    color: #1f2937;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 地图和模式 */
.server-map,
.server-mode {
    font-size: 13px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 玩家数量显示 */
.server-players {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
}

.player-bar {
    width: 100%;
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.player-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #ffc107 70%, #dc3545 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* 时间显示 */
.server-time {
    font-size: 13px;
    color: #6b7280;
    font-family: 'Courier New', monospace;
}

/* 操作按钮 */
.server-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #667eea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.connect-btn:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

/* 服务器详情 */
.server-details {
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

/* 详情行样式 */
.details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
}

.details-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
    min-width: 100px;
}

.detail-value {
    color: #1f2937;
    font-weight: 600;
    text-align: right;
    font-family: 'Courier New', monospace;
}

.server-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.header-left h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left h4 i {
    color: #3b82f6;
    font-size: 18px;
}

.server-stats {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.stat-item i {
    color: #6b7280;
    font-size: 12px;
}

.stat-item small {
    color: #9ca3af;
    font-weight: 500;
}

.server-status-indicator {
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.server-status-indicator i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

.server-status-indicator.idle {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.server-status-indicator.near-full {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.server-status-indicator.full {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.detail-card:hover::before {
    left: 100%;
}

.detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.detail-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.4s ease;
}

.detail-card:hover .card-header::after {
    width: 100%;
}

.card-header i {
    color: #3b82f6;
    font-size: 18px;
    margin-right: 10px;
}

.card-header span {
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
}

.card-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.detail-card:hover .card-badge::before {
    left: 100%;
}

.card-badge.licensed {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.card-badge.custom {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.card-content {
    padding: 24px;
}

/* 连接信息卡片 */
.connection-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.connection-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ip-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid #0ea5e9;
}

.ip-address i {
    color: #0284c7;
    font-size: 16px;
}

.ip-text {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #0c4a6e;
    font-size: 16px;
    flex: 1;
}

.copy-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.copy-btn:hover::before {
    opacity: 0.1;
}

.copy-btn i {
    position: relative;
    z-index: 1;
}

.copy-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.copy-btn:active {
    transform: scale(1.05) rotate(0deg);
    transition: all 0.1s ease;
}

.port-info, .version-info, .server-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.connection-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

/* 游戏信息卡片 */
.faction-battle {
    margin-bottom: 20px;
}

.faction-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faction {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    min-width: 120px;
    justify-content: center;
}

.faction-one {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 2px solid #3b82f6;
}

.faction-two {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #991b1b;
    border: 2px solid #ef4444;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 12px;
}

.game-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.next-map, .queue-status {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.next-map i, .queue-status i {
    color: #6b7280;
    font-size: 14px;
}

.queue-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.queue-indicator {
    margin-left: 8px;
    font-size: 16px;
}

.has-queue .queue-status {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
}

/* 服务器状态卡片 */
.status-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #6b7280;
}

.status-icon.idle {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.status-icon.near-full {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.status-icon.full {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.status-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

/* 操作按钮 */
.details-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.action-btn.primary:hover .btn-glow {
    left: 100%;
}

.action-btn.secondary {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #374151;
    border: 2px solid #e5e7eb;
}

.action-btn.secondary:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.action-btn.tertiary {
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
    color: #92400e;
    border: 2px solid #fbbf24;
}

.action-btn.tertiary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

/* 无服务器状态 */
.no-servers {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

.no-servers::before {
    content: '🔍';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .servers-header,
    .server-main {
        grid-template-columns: 30px 1fr 120px 80px 100px 80px 70px;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .server-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .servers-header,
    .server-main {
        grid-template-columns: 1fr 80px 60px;
        gap: 10px;
    }
    
    .server-map,
    .server-mode,
    .server-time {
        display: none;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
