﻿.components-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 20, 31, 0.95) 0%, rgba(22, 28, 41, 0.95) 50%, rgba(16, 20, 31, 0.95) 100%);
    min-height: 60vh;
}

.section-header {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.component-overview-card {
    height: 100%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .component-overview-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(64, 224, 255, 0.3);
        box-shadow: 0 20px 40px rgba(64, 224, 255, 0.1);
    }

    .component-overview-card.coming-soon {
        opacity: 0.7;
    }

        .component-overview-card.coming-soon:hover {
            transform: none;
            background: rgba(255, 255, 255, 0.05);
        }

.component-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.component-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.2), rgba(128, 0, 255, 0.2));
    border: 2px solid rgba(64, 224, 255, 0.3);
}

.gpu-icon {
    color: #ff6b35;
}

.cpu-icon {
    color: #4ecdc4;
}

.mb-icon {
    color: #45b7d1;
}

.ram-icon {
    color: #96ceb4;
}

.storage-icon {
    color: #feca57;
}

.psu-icon {
    color: #ff9ff3;
}

.cooling-icon {
    color: #54a0ff;
}

.case-icon {
    color: #5f27cd;
}

.monitor-icon {
    color: #00d2d3;
}

.component-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.component-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.component-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    color: rgba(64, 224, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-separator {
    color: rgba(255, 255, 255, 0.5);
}

.component-actions {
    margin-top: auto;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        color: white;
    }

.cta-section-products {
    margin-top: 4rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .component-overview-card {
        padding: 1.5rem;
    }

    .component-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }
}
