.portfolio-section {
    padding: 100px 0;
    background: #050505;
}

.portfolio-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: .3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168,85,247,0.7);
    box-shadow: 0 20px 60px rgba(168,85,247,0.18);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content span {
    color: #a855f7;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-content h3 {
    color: #fff;
    margin: 10px 0;
}

.portfolio-content p {
    color: #b5b5b5;
}

.btn-portfolio {
    border: 1px solid #a855f7;
    background: transparent;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
}

.btn-portfolio:hover {
    background: #a855f7;
}

.portfolio-modal {
    background: #080808;
    border: 1px solid rgba(168,85,247,0.4);
}

#portfolioIframe {
    width: 100%;
    height: 75vh;
    border: 0;
}