/* OYUNCU KARTLARI KUTUSU */
.cast-box { 
    background: var(--glass-bg); padding: 25px; border-radius: 20px; 
    border: 1px solid var(--border-color); margin-bottom: 30px; 
    backdrop-filter: blur(10px); 
}

.section-heading { 
    font-size: 17px; font-weight: 800; color: var(--text-main); 
    margin-bottom: 20px; border-left: 4px solid var(--primary-color); 
    padding-left: 15px; text-transform: uppercase; 
}

.cast-grid { 
    display: grid; 
    /* 65px ayarı korundu: Sidebar açılınca esneklik sağlar */
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr)); 
    gap: 10px; 
    transition: all 0.4s ease; 
}

.cast-card { 
    background: var(--input-bg); border-radius: 10px; 
    overflow: hidden; transition: 0.3s; 
    border: 1px solid var(--border-color); text-align: center; 
}

.cast-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }

.cast-img-wrapper { width: 100%; padding-top: 125%; position: relative; background: var(--bg-body); overflow: hidden; }
.cast-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

.cast-info { padding: 6px 3px; }

/* Kartlar küçüldüğü için fontlar optimize edildi */
.cast-name { 
    font-size: 10px; font-weight: 700; color: var(--text-main); 
    margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 
}
.cast-role { 
    font-size: 8px; color: var(--text-sub); 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 
}