/* CSS for No-Image Card */
.processor-card
{
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.processor-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #06b6d4);
    z-index: 1;
}

.processor-card:hover
{
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(37, 99, 235, 0.3);
}

.card-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.processor-badge
{
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.processor-flags
{
    display: flex;
    gap: 8px;
}

.flag
{
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flag.unlocked
{
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.flag.igpu
{
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.processor-name
{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    line-height: 1.3;
}

.brand
{
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand.amd
{
    background: linear-gradient(135deg, #ed1c24, #ff6b6b);
    color: white;
}

.brand.intel
{
    background: linear-gradient(135deg, #0071c5, #00b4ff);
    color: white;
}

.processor-specs
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item
{
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-item:hover
{
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
}

.spec-item::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.spec-item:hover::before
{
    opacity: 1;
}

.spec-label
{
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.spec-value
{
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.spec-icon
{
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 16px;
    opacity: 0.5;
}

.processor-features
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.feature
{
    background: rgba(37, 99, 235, 0.15);
    color: #06b6d4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.feature:hover
{
    background: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.card-footer
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    a
    {
        text-decoration: none;
    }
}

.processor-price
{
    text-align: center;
}

.price
{
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-label
{
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-rating
{
    text-align: center;
}

.rating-stars
{
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 4px;
}

.rating-score
{
    margin-left: 8px;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.rating-label
{
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-btn
{
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.compare-btn:hover
{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.compare-btn:active
{
    transform: translateY(-1px);
}

.compare-btn i
{
    font-size: 14px;
}