.servers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.servers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.servers-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.servers-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 3px;
    opacity: 0.7;
}

/* Основной сервер */
.server-main {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.server-banner {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.server-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--red);
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: pulseOnline 2s infinite;
}

.status-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #00ff00;
}

.server-name {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.server-tagline {
    font-family: 'Orbitron', monospace;
    color: var(--red);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.server-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (max-width: 900px) {
    .server-content {
        grid-template-columns: 1fr;
    }
}

.server-description {
    color: #ccc;
}

.server-description p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features {
    margin-bottom: 2rem;
}

.features h3 {
    font-family: 'Orbitron', monospace;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li i {
    color: var(--red);
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--red);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 0.5rem;
    text-shadow: var(--glow);
}

.stat-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* Подключение */
.server-connect {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 2rem;
}

.server-connect h3 {
    font-family: 'Orbitron', monospace;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connect-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gray);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.connect-btn:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    background: rgba(255, 0, 51, 0.1);
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.2), transparent);
    transition: left 0.6s;
}

.connect-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.5rem;
    color: var(--red);
}

.btn-content {
    flex: 1;
}

.btn-title {
    font-family: 'Orbitron', monospace;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: #aaa;
}

.btn-arrow {
    color: var(--red);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.connect-btn:hover .btn-arrow {
    opacity: 1;
}

.discord-link {
    text-align: center;
    margin-top: 2rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.discord-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Другие проекты */
.other-projects {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 2rem;
}

.other-projects h3 {
    font-family: 'Orbitron', monospace;
    color: var(--red);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.project-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    background: rgba(255, 0, 51, 0.1);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.project-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-dev,
.status-plan {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.status-dev {
    background: rgba(255, 0, 51, 0.2);
    color: var(--red);
    border: 1px solid var(--red);
}

.status-plan {
    background: rgba(0, 255, 255, 0.2);
    color: #0ff;
    border: 1px solid #0ff;
}

/* Анимации */
@keyframes pulseOnline {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.server-main,
.other-projects {
    animation: fadeInScale 0.6s ease forwards;
    opacity: 0;
}

.server-main {
    animation-delay: 0.1s;
}

.other-projects {
    animation-delay: 0.3s;
}

/* Адаптивность */
@media (max-width: 768px) {
    .servers-container {
        padding: 6rem 1rem 2rem;
    }
    
    .servers-title {
        font-size: 2rem;
    }
    
    .servers-subtitle {
        font-size: 1rem;
    }
    
    .server-name {
        font-size: 1.8rem;
    }
    
    .server-tagline {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .server-stats {
        grid-template-columns: 1fr;
    }
}
