/* ═══════════════════════════════════════════════
   VULNERABILITIES PAGE STYLES
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   STORE HERO SECTION
   ═══════════════════════════════════════════════ */
.store-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 30, 17, 0.95), rgba(45, 80, 22, 0.9));
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 40px 0;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(144, 238, 144, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(92, 219, 92, 0.1) 0%, transparent 50%);
    animation: particle-pulse 4s ease-in-out infinite;
}

@keyframes particle-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(92, 219, 92, 0.05) 0%, 
        transparent 50%, 
        rgba(144, 238, 144, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    color: #90ee90;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(144, 238, 144, 0.6),
                 0 0 60px rgba(92, 219, 92, 0.4);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title i {
    margin-right: 15px;
    color: #5cdb5c;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5cdb5c;
    text-shadow: 0 0 20px rgba(92, 219, 92, 0.6);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   VULNERABILITIES CONTENT
   ═══════════════════════════════════════════════ */
.vulnerabilities-content {
    padding: 60px 0;
}

.vulnerabilities-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.content-card {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(13, 30, 17, 0.9));
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.content-card.critical {
    --border-color: #ff4757;
    border-color: rgba(255, 71, 87, 0.4);
}

.content-card.high {
    --border-color: #ffa502;
    border-color: rgba(255, 165, 2, 0.4);
}

.content-card.medium {
    --border-color: #f7931e;
    border-color: rgba(247, 147, 30, 0.4);
}

.content-card.low {
    --border-color: #5cdb5c;
    border-color: rgba(92, 219, 92, 0.4);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(92, 219, 92, 0.3);
    border-color: var(--border-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.4rem;
    color: #90ee90;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i {
    color: var(--border-color);
    font-size: 1.2rem;
}

.severity-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px currentColor;
}

.severity-badge.critical {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 1px solid #ff4757;
}

.severity-badge.high {
    background: rgba(255, 165, 2, 0.2);
    color: #ffa502;
    border: 1px solid #ffa502;
}

.severity-badge.medium {
    background: rgba(247, 147, 30, 0.2);
    color: #f7931e;
    border: 1px solid #f7931e;
}

.severity-badge.low {
    background: rgba(92, 219, 92, 0.2);
    color: #5cdb5c;
    border: 1px solid #5cdb5c;
}

.card-content {
    color: rgba(255, 255, 255, 0.9);
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vuln-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vuln-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.vuln-list li:last-child {
    border-bottom: none;
}

.vuln-list li::before {
    content: '▸';
    color: var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.vuln-list li:hover {
    padding-left: 10px;
    color: #fff;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .store-hero {
        padding: 60px 20px;
        margin: 20px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

