/* ═══════════════════════════════════════════════════════════════
   分流頁面專用樣式 - Cyberpunk Theme
   ═══════════════════════════════════════════════════════════════ */

/* Hero Override */
.servers-hero .server-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Main Content */
.servers-main {
    margin: 2rem 0;
}

.servers-article {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 245, 212, 0.1);
    animation: cardReveal 0.6s ease-out 0.3s both;
}

/* Server Sections */
.server-section {
    margin: 4rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
    animation: fadeIn 0.6s ease-out both;
}

.server-section:nth-child(1) { animation-delay: 0.2s; }
.server-section:nth-child(2) { animation-delay: 0.3s; }
.server-section:nth-child(3) { animation-delay: 0.4s; }
.server-section:nth-child(4) { animation-delay: 0.5s; }
.server-section:nth-child(5) { animation-delay: 0.6s; }

.server-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Image Container */
.server-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.server-image {
    max-width: calc(100% - 60px);
    width: auto;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 245, 212, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-image:hover {
    transform: scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

/* Server Info Cards */
.server-info-card {
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.server-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
}

.server-info-card:hover {
    transform: translateY(-8px);
}

/* Survival Server - Emerald Green */
.survival-server {
    background: rgba(0, 245, 180, 0.05);
    border: 1px solid rgba(0, 245, 180, 0.2);
}

.survival-server::before {
    background: linear-gradient(90deg, #00f5b4, #00d4aa);
}

.survival-server h2 {
    font-family: var(--font-display);
    color: #00f5b4;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* Minigame Server - Electric Orange */
.minigame-server {
    background: rgba(255, 150, 50, 0.05);
    border: 1px solid rgba(255, 150, 50, 0.2);
}

.minigame-server::before {
    background: linear-gradient(90deg, #ff9632, #ff6b00);
}

.minigame-server h2 {
    font-family: var(--font-display);
    color: #ff9632;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* Vanilla Server - Neon Purple */
.vanilla-server {
    background: rgba(180, 100, 255, 0.05);
    border: 1px solid rgba(180, 100, 255, 0.2);
}

.vanilla-server::before {
    background: linear-gradient(90deg, #b464ff, #8b5cf6);
}

.vanilla-server h2 {
    font-family: var(--font-display);
    color: #b464ff;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* Feature Highlight */
.feature-highlight {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-highlight h3,
.feature-highlight h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 245, 212, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 212, 0.15);
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 1.3rem;
}

.feature-item:hover {
    background: rgba(0, 245, 212, 0.15);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

/* Minigame List */
.minigame-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.minigame-item {
    display: grid;
    grid-template-columns: 50px 1fr 2fr;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 150, 50, 0.08);
    border-radius: 12px;
    border-left: 4px solid #ff9632;
    transition: all 0.3s ease;
}

.minigame-item:hover {
    transform: translateX(8px);
    background: rgba(255, 150, 50, 0.15);
    box-shadow: 0 0 20px rgba(255, 150, 50, 0.2);
}

.game-icon {
    font-size: 1.8rem;
    text-align: center;
}

.game-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: #ff9632;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.game-desc {
    color: var(--text-secondary);
    font-size: 1.3rem;
}

/* Vanilla Features */
.vanilla-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.vanilla-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(180, 100, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid #b464ff;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.vanilla-item:hover {
    background: rgba(180, 100, 255, 0.15);
    transform: translateX(5px);
}

.vanilla-icon {
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
}

/* Simple Rules */
.rules-simple {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(247, 37, 133, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(247, 37, 133, 0.2);
}

.rules-simple h4 {
    font-family: var(--font-display);
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.rules-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-simple li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.2rem;
}

.rules-simple li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0.6rem;
}

/* Server Description */
.server-description {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--neon-cyan);
}

/* Footer */
.servers-footer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.servers-footer p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .servers-hero .server-title {
        font-size: 1.8rem;
    }

    .servers-article {
        padding: 2rem;
    }

    .server-image {
        max-width: calc(100% - 30px);
    }

    .server-info-card {
        padding: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .minigame-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .game-icon { order: 1; }
    .game-name { order: 2; font-size: 1.1rem; }
    .game-desc { order: 3; }
}

@media (max-width: 480px) {
    .servers-article {
        padding: 1.5rem;
    }

    .server-info-card {
        padding: 1.5rem;
    }

    .feature-highlight {
        padding: 1.5rem;
    }

    .server-image {
        max-width: 100%;
    }
}
