
/* === NEON CYBERPUNK THEME === */
.neon-portfolio-wrap {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1628 100%);
    padding: 30px;
    border-radius: 16px;
    font-family: "Segoe UI", system-ui, sans-serif;
}
.neon-card {
    background: rgba(15, 15, 35, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05), inset 0 0 15px rgba(0, 255, 255, 0.02);
    position: relative;
}
.neon-card:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15), 0 0 60px rgba(138, 43, 226, 0.1), inset 0 0 20px rgba(0, 255, 255, 0.03);
    transform: translateY(-3px);
}
.neon-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #8a2be2, #ff00ff, #00ffff);
    background-size: 200% 100%;
    animation: neonSlide 3s linear infinite;
}
@keyframes neonSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}
.neon-header {
    padding: 24px 28px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.neon-title {
    font-size: 1.6em;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}
.neon-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 0, 255, 0.4);
    color: #ff00ff;
    background: rgba(255, 0, 255, 0.08);
    white-space: nowrap;
}
.neon-body {
    padding: 8px 28px 20px;
}
.neon-description {
    color: rgba(200, 210, 230, 0.85);
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 16px;
}
.neon-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 28px;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}
.neon-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(180, 190, 210, 0.7);
    font-size: 0.85em;
}
.neon-meta-item .neon-icon {
    font-size: 1.1em;
}
.neon-meta-item strong {
    color: #00ffff;
    font-weight: 600;
}
.neon-footer {
    padding: 14px 28px;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    text-align: right;
}
.neon-artist {
    color: rgba(138, 43, 226, 0.9);
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}
.neon-grid-header {
    text-align: center;
    padding: 20px 0 10px;
}
.neon-grid-header h2 {
    font-size: 2.2em;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffff, #8a2be2, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}
.neon-grid-header p {
    color: rgba(180, 190, 210, 0.5);
    font-size: 0.95em;
    margin-top: 6px;
}
