/* ==================== CATEGORY CONTENT DISPLAY ==================== */
.category-content-display {
    padding: 20px 0;
    max-width: 100%;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 8px;
}

.category-subtitle {
    font-size: 16px;
    color: #a3a3a3;
}

.info-section {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(64, 64, 64, 0.3);
    border-radius: 16px;
    border: 1px solid #525252;
    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
}

.section-icon {
    font-size: 24px;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e5e5e5;
    margin: 0;
}

/* ==================== SHARED COMPONENTS ==================== */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}