/* REFERANSLAR.HTML ÖZEL STİLLER */

/* Modern Kart Efekti */
.tech-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--color-brand-glow);
    border-color: var(--color-brand);
}

/* Modal (Pop-up) Stilleri */
#detail-modal {
    backdrop-filter: blur(8px);
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: var(--bg-body);
    border: 1px solid var(--color-brand);
    box-shadow: 0 0 50px var(--color-brand-glow);
}

/* Açıklama içindeki linklerin rengi */
.desc-content a {
    color: var(--color-brand);
    text-decoration: underline;
    font-weight: bold;
}

.desc-content a:hover {
    opacity: 0.8;
}
