/* css/plugins.css */
.plugin-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent-20) !important;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
}
.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-20);
    border-color: var(--theme-blue-light) !important;
}
.plugin-header {
    height: 14rem;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--theme-blue-primary) 0%, var(--theme-blue-dark) 100%);
}
.plugin-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--white-10), transparent);
    transform: rotate(45deg);
}
.plugin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.plugin-card:hover .plugin-img {
    transform: scale(1.05);
}
.plugin-body {
    background: transparent;
}
.filter-btn {
    transition: all 0.3s ease;
    border-color: var(--accent-30);
    color: var(--text-primary);
}
.filter-btn:hover, .filter-btn.active {
    background-color: var(--theme-blue-primary);
    color: white;
    border-color: var(--theme-blue-primary);
}

.portfolio-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.25rem;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(2, 6, 23, 0.96) 100%);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    text-align: left !important;
}

.portfolio-cta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    pointer-events: none;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
}

.portfolio-cta-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.28rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(96, 165, 250, 0.35);
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.portfolio-cta-btn {
    border-color: rgba(203, 213, 225, 0.55) !important;
    color: #e2e8f0 !important;
}

.portfolio-cta-btn:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border-color: #e2e8f0 !important;
}
