/* Server Details Page Styles */

.back-link {
    margin-bottom: 30px;
}

.server-details {
    max-width: 1000px;
    margin: 0 auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.detail-card {
    background: #161b22;
    border: 2px solid #30363d;
    border-radius: 12px;
    padding: 30px;
}

.detail-card h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.detail-card.full-width {
    margin-bottom: 30px;
}

.detail-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Info List */
.info-list {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #30363d;
}

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

.info-item .label {
    color: #888;
    font-weight: 600;
}

.info-item .value {
    color: #e0e0e0;
    font-weight: 500;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: #b0b0b0;
    font-size: 1.05rem;
}

/* Rules List */
.rules-list {
    list-style: decimal;
    padding-left: 25px;
    color: #b0b0b0;
}

.rules-list li {
    padding: 8px 0;
    line-height: 1.6;
}

/* Connect Steps */
.connect-steps {
    list-style: decimal;
    padding-left: 25px;
    color: #b0b0b0;
}

.connect-steps li {
    padding: 10px 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.connect-steps strong {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    background: #0a0e14;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Community Section */
.community-section {
    text-align: center;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #30363d;
    margin-top: 30px;
}

.community-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.community-section p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }
}
