/* GENEL KAPLAYICI (Galeri ile aynı temel yapı) */
.about-container {
    margin-top: 120px; /* Header payı */
    margin-bottom: 50px;
    width: 90%;
    max-width: 900px; /* Biraz daha daralttık, okuması kolay olsun */
    margin-left: auto;
    margin-right: auto;
    
    padding: 50px;
    
    /* CAM EFEKTİ (Glassmorphism) */
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.2); 
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    
    /* İçerik düzeni - ORTALAMA */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Tüm metni ortala */
}

/* PROFİL BÖLÜMÜ STİLLERİ KALDIRILDI (.profile-section, .profile-img) */

/* YAZI ALANI */
.profile-text {
    width: 100%; /* Tüm genişliği kullan */
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.bio {
    font-family: 'Roboto', sans-serif;
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px; /* Satırlar çok uzamasın diye sınırladık */
    margin-left: auto;
    margin-right: auto;
}

/* İSTATİSTİK BARLARI */
.stats {
    margin-bottom: 30px;
    width: 100%;
    max-width: 700px; /* Barlar da çok uzamasın */
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Barların başlıkları sola yaslı olsun */
}

.stat-item {
    margin-bottom: 15px;
}

.stat-item span {
    display: block;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #eee;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #444;
}

.progress {
    height: 100%;
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    border-radius: 5px;
}

/* SOSYAL MEDYA */
.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 2rem;
    color: #fff;
    margin: 0 15px; /* İkonlar arası boşluk */
    transition: 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    transform: translateY(-3px);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-container {
        padding: 30px;
        margin-top: 100px;
        width: 95%;
    }
    
    .bio {
        font-size: 1rem;
    }
}

/* --- YENİ EKLENEN ÜNİVERSİTE BUTONU --- */
.uni-button-container {
    margin: 40px 0 30px 0; /* Üstten ve alttan boşluk */
    text-align: center;
}

.sith-btn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.8); /* Arka plan koyu */
    border: 2px solid #ff0000; /* Kırmızı Çerçeve */
    color: #ff0000;
    font-family: 'Orbitron', sans-serif; /* Sith Fontu */
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.4s ease;
    
    /* Butonda ikon ile yazı arası boşluk */
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buton Hover Efekti (Üzerine Gelince) */
.sith-btn:hover {
    background: #ff0000; /* Zemin kırmızı olsun */
    color: #000; /* Yazı siyah olsun */
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8); /* Etrafa ışık saçsın */
    transform: translateY(-5px); /* Hafif yukarı kalksın */
}

/* --- YENİ EKLENEN VİDEO ALANI --- */
.intro-video {
    width: 100%;
    max-width: 700px; /* Video çok geniş olmasın */
    margin: 0 auto 40px auto; /* Ortala ve alttan boşluk bırak */
    border: 1px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2); /* Hafif kırmızı gölge */
    border-radius: 10px;
    overflow: hidden; /* Köşeler yuvarlak kalsın */
}

/* Mobilde video boyutu ayarı */
@media (max-width: 768px) {
    .intro-video iframe {
        height: 250px; /* Mobilde yükseklik daha az olsun */
    }
    .sith-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}