/* ===== Servers Page ===== */
.servers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 32px 80px;
    min-height: 100vh;
}

.servers-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-bottom: 32px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-icon svg {
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.servers-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Coming Soon Section ===== */
.coming-soon-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.coming-soon-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

/* ===== Coming Soon Animation ===== */
.coming-soon-animation {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 0;
}

.pulse-ring.delay-1 {
    animation-delay: 0.4s;
}

.pulse-ring.delay-2 {
    animation-delay: 0.8s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.coming-soon-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

.coming-soon-icon svg {
    color: white;
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.coming-soon-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ===== Features Preview ===== */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-item svg {
    color: var(--primary);
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Notify Button ===== */
.notify-section {
    display: flex;
    justify-content: center;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.5);
}

/* ===== Info Banner ===== */
.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-banner svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-banner p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .servers-container {
        padding: 100px 20px 60px;
    }

    .servers-hero {
        margin-bottom: 60px;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .hero-icon svg {
        width: 48px;
        height: 48px;
    }

    .coming-soon-card {
        padding: 60px 32px;
    }

    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }

    .coming-soon-icon svg {
        width: 60px;
        height: 60px;
    }

    .pulse-ring {
        width: 100px;
        height: 100px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .features-preview {
        grid-template-columns: 1fr;
    }

    .info-banner {
        flex-direction: column;
        padding: 24px;
    }
}