* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

/* 主容器 - 网格布局 */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部区域 */
.header-section {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 1px;
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1rem;
    opacity: 0.9;
    color: #e8f4fd;
}

/* 内容网格布局 */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    flex: 1;
}

/* 左侧面板 */
.left-panel {
    display: flex;
    flex-direction: column;
}

/* 右侧面板 */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 状态容器 */
.status-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex: 1;
}

.loading {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e8f4fd;
    border-top: 4px solid #1e3c72;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(30, 60, 114, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.results h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e3c72;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 服务器项样式 */
.server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
    border-radius: 12px;
    border-left: 4px solid #1e3c72;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.server-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-left-color: #ffd700;
}

.server-info {
    flex: 1;
}

.server-url {
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 5px;
    font-size: 1rem;
}

.server-status {
    font-size: 0.9rem;
    color: #666;
}

.server-latency {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
    padding: 6px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 15px;
    border: 2px solid #28a745;
    white-space: nowrap;
}

.server-latency.high {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.server-latency.very-high {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}

/* 右侧面板组件样式 */
.countdown, .app-download, .stats-preview, .jump-instructions-compact {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.countdown p {
    font-size: 1.1rem;
    color: #1e3c72;
    font-weight: 500;
    text-align: center;
}

#timer {
    font-weight: bold;
    font-size: 1.8rem;
    color: #dc3545;
    text-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

.app-download h3, .stats-preview h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #1e3c72;
    font-size: 1.3rem;
    font-weight: bold;
}

.app-download h3 i, .stats-preview h3 i {
    margin-right: 8px;
    color: #28a745;
}

#download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    border: none;
    cursor: pointer;
    min-width: 160px;
    text-align: center;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

/* 统计网格 */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(30, 60, 114, 0.1);
}

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

.stat-label {
    font-weight: 500;
    color: #1e3c72;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: bold;
    color: #28a745;
    font-size: 1rem;
}

/* 跳转说明 */
.jump-instructions-compact {
    text-align: center;
}

.instructions-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: #1e3c72;
    font-weight: 500;
}

.instructions-content i {
    font-size: 1.1rem;
    color: #28a745;
}

/* 检测进度条 */
.detection-progress {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 15px 0;
}

.detection-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    transition: width 0.3s ease;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 股票主题装饰元素 */
.stock-decoration {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
    z-index: 1001;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 客户端检测状态指示器 */
.client-detection-indicator {
    position: fixed;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
    z-index: 1001;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 客服按钮样式 */
.customer-service {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.cs-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(30, 60, 114, 0.4);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.cs-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.6);
    border-color: #ffd700;
}

.cs-button i {
    font-size: 1.1rem;
}

#online-cs {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
}

#wechat-cs {
    background: linear-gradient(135deg, #07c160 0%, #00d4aa 100%);
    box-shadow: 0 6px 18px rgba(7, 193, 96, 0.4);
}

#qq-cs {
    background: linear-gradient(135deg, #12b7f5 0%, #00bcd4 100%);
    box-shadow: 0 6px 18px rgba(18, 183, 245, 0.4);
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 10% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 2px solid rgba(30, 60, 114, 0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e3c72;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: #1e3c72;
    font-size: 1.3rem;
    text-align: center;
}

.modal-content p {
    color: #666;
    line-height: 1.5;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 15px;
    }
    
    .main-container {
        padding: 12px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .right-panel {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .header p {
        font-size: 0.85rem;
    }
    
    .status-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .loading {
        padding: 25px 15px;
    }
    
    .spinner {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .results h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .server-item {
        padding: 12px;
        margin: 8px 0;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .server-info {
        width: 100%;
        text-align: center;
    }
    
    .server-url {
        font-size: 0.95rem;
    }
    
    .server-status {
        font-size: 0.85rem;
    }
    
    .server-latency {
        font-size: 1.1rem;
        padding: 8px 15px;
        width: 100%;
        text-align: center;
    }
    
    .countdown, .app-download, .stats-preview, .jump-instructions-compact {
        padding: 15px;
        border-radius: 12px;
    }
    
    .countdown p {
        font-size: 1rem;
    }
    
    #timer {
        font-size: 1.6rem;
    }
    
    .app-download h3, .stats-preview h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .download-button {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 8px 0;
    }
    
    .instructions-content {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .instructions-content i {
        font-size: 1rem;
    }
    
    .customer-service {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .cs-button {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 110px;
        border-radius: 20px;
    }
    
    .cs-button i {
        font-size: 1rem;
    }
    
    .stock-decoration {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 10px;
        left: 10px;
    }
    
    .client-detection-indicator {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
        border-radius: 15px;
    }
    
    /* 移动端布局顺序优化 */
    .right-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    /* 移动端：检测结果第一 */
    .status-container {
        order: 1;
    }
    
    /* 移动端：APP下载第二 */
    .app-download {
        order: 2;
    }
    
    /* 移动端：倒计时第三 */
    .countdown {
        order: 3;
    }
    
    /* 移动端：跳转说明第四 */
    .jump-instructions-compact {
        order: 4;
    }
    
    /* 移动端：检测统计最后 */
    .stats-preview {
        order: 5;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 8px;
    }
    
    .header h1 {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .header p {
        font-size: 0.8rem;
    }
    
    .status-container {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .loading {
        padding: 20px 12px;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .results h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .server-item {
        padding: 10px;
        margin: 6px 0;
        gap: 8px;
    }
    
    .server-url {
        font-size: 0.9rem;
    }
    
    .server-status {
        font-size: 0.8rem;
    }
    
    .server-latency {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .countdown, .app-download, .stats-preview, .jump-instructions-compact {
        padding: 12px;
        border-radius: 10px;
    }
    
    .countdown p {
        font-size: 0.9rem;
    }
    
    #timer {
        font-size: 1.4rem;
    }
    
    .app-download h3, .stats-preview h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .download-button {
        min-width: 120px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .instructions-content {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .instructions-content i {
        font-size: 0.9rem;
    }
    
    .customer-service {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .cs-button {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 100px;
        border-radius: 18px;
    }
    
    .cs-button i {
        font-size: 0.9rem;
    }
    
    .stock-decoration {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 8px;
        left: 8px;
    }
    
    .client-detection-indicator {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }
    
    /* 超小屏幕进一步优化间距 */
    .right-panel {
        gap: 10px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .header h1 {
        font-size: 1.4rem;
    }
    
    .header p {
        font-size: 0.75rem;
    }
    
    .status-container {
        padding: 12px 10px;
    }
    
    .server-item {
        padding: 8px;
    }
    
    .download-button {
        min-width: 100px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .cs-button {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 90px;
    }
    
    .stock-decoration {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* 超小屏幕进一步减少间距 */
    .right-panel {
        gap: 8px;
    }
    
    .countdown, .app-download, .stats-preview, .jump-instructions-compact {
        padding: 10px;
    }
}

/* 移动端触摸优化 */
@media (max-width: 768px) {
    .server-item {
        min-height: 50px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .server-item:active {
        transform: scale(0.98);
    }
    
    .download-button {
        min-height: 45px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .download-button:active {
        transform: scale(0.95);
    }
    
    .cs-button {
        min-height: 40px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cs-button:active {
        transform: scale(0.95);
    }
    
    /* 移动端字体优化 */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* 移动端布局顺序优化 - 确保正确的显示顺序 */
    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .left-panel {
        order: 1;
    }
    
    .right-panel {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    /* 移动端：检测结果第一（在左侧面板中） */
    .status-container {
        order: 1;
    }
    
    /* 移动端：APP下载第二 */
    .app-download {
        order: 2;
    }
    
    /* 移动端：倒计时第三 */
    .countdown {
        order: 3;
    }
    
    /* 移动端：跳转说明第四 */
    .jump-instructions-compact {
        order: 4;
    }
    
    /* 移动端：检测统计最后 */
    .stats-preview {
        order: 5;
    }
    
    /* 移动端统计网格优化 */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 8px 0;
        border-bottom: 1px solid rgba(30, 60, 114, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    /* 移动端按钮优化 */
    .download-button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    /* 移动端客服按钮优化 */
    .customer-service {
        position: fixed;
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .cs-button {
        min-width: 110px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* 可点击服务器项样式 */
.clickable-server-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-server-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-left-color: #28a745;
}

.clickable-server-item:active {
    transform: translateY(-1px);
}

.clickable-server-item::after {
    content: '点击跳转';
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clickable-server-item:hover::after {
    opacity: 1;
}

/* 跳转提示样式 */
.jump-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(40, 167, 69, 0.95);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: tipFadeIn 0.3s ease;
}

.tip-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes tipFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 检测统计样式 */
.detection-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid rgba(30, 60, 114, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.detection-stats::before {
    content: '📊 检测统计';
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(30, 60, 114, 0.1);
}

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

.stats-label {
    font-weight: 500;
    color: #1e3c72;
    font-size: 0.85rem;
}

.stats-value {
    font-weight: bold;
    color: #28a745;
    font-size: 0.9rem;
}

/* 测试URL显示样式 */
.server-test-url {
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    background: rgba(0,0,0,0.05);
    padding: 2px 4px;
    border-radius: 3px;
}

/* 延迟数值动画 */
.server-latency {
    position: relative;
    overflow: hidden;
}

.server-latency::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 服务器项增强样式 */
.server-item {
    position: relative;
    overflow: hidden;
}

.server-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.server-item:hover::before {
    transform: translateX(100%);
}
