/* =========================================
   1. TEMEL AYARLAR
   ========================================= */
:root {
    --primary-blue: #007bff;
    --primary-orange: #ff6b00;
    --text-dark: #1a1a1a;
    --text-grey: #666;
    --bg-white: #ffffff;
    --font-main: 'Gotham', sans-serif;
    
    /* Kurumsal Renkler */
    --color-insta: #E1306C;
    --color-behance: #1769ff;
    --color-youtube: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    /* Arka plan şeffaf olacak ki gradient topları görünsün */
    background-color: transparent; 
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. SABİT ARKA PLAN (HEADER & FOOTER HARİÇ)
   ========================================= */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* En arkada */
    background-color: #fff; /* Çok hafif bir zemin */
    overflow: hidden;
}

.gradient-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7; /* İçeriğin okunabilir olması için hafif kısık */
}

.gradient-ball.orange {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.8), rgba(255, 140, 0, 0.3));
    top: -100px;
    left: -150px;
    animation: moveOrange 20s infinite alternate ease-in-out;
}

.gradient-ball.blue {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.8), rgba(0, 86, 210, 0.3));
    bottom: -150px;
    right: -200px;
    animation: moveBlue 25s infinite alternate ease-in-out;
}

@keyframes moveOrange {
    0% { transform: translate(0, 0); }
    100% { transform: translate(150px, 200px); }
}

@keyframes moveBlue {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -150px); }
}

/* =========================================
   3. HEADER (Logolu, İsimsiz, Opak)
   ========================================= */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff; /* Beyaz ve Opak: Arkadaki topları kapatır */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between; /* Logo sol, Menü sağ */
    align-items: center;
}

.logo-placeholder {
    width: 150px;
    height: 40px;
    background: transparent; /* Opak kare kaldırıldı */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Logo sola hizalı kalsın */
    color: #999;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 0;
}

/* SVG logo boyutu ve hizalama */
.site-logo{
    display:block;
    height:32px;
    width:auto;
}

.nav a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--primary-orange);
}

/* =========================================
   4. SOSYAL İKONLAR (RENKLENDİRME)
   ========================================= */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* İkonlar arası boşluk */
    margin-bottom: 30px;
}

.icon-btn {
    font-size: 2rem; /* İkon boyutu */
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Hafif arka plan */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover Efektleri - Kurumsal Renkler */
.icon-btn.instagram:hover {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}

.icon-btn.behance:hover {
    color: #fff;
    background-color: var(--color-behance);
    box-shadow: 0 10px 20px rgba(23, 105, 255, 0.3);
}

.icon-btn.youtube:hover {
    color: #fff;
    background-color: var(--color-youtube);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.icon-btn:hover {
    transform: translateY(-5px);
}

/* LinkedIn ve WhatsApp için renklenmiş hover stilleri */
.icon-btn.linkedin:hover {
    color: #fff;
    background-color: #0A66C2; /* LinkedIn mavi */
    box-shadow: 0 10px 20px rgba(10,102,194,0.25);
}
.icon-btn.whatsapp:hover {
    color: #fff;
    background-color: #25D366; /* WhatsApp yeşili */
    box-shadow: 0 10px 20px rgba(37,211,102,0.25);
}

/* =========================================
   5. HERO BÖLÜMÜ
   ========================================= */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Main içindeki içerikler sabit arka planın üstünde olmalı */
    z-index: 1; 
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    padding: 6px;
    background: #fff;
    /* Instagram border */
    background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--text-grey);
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: linear-gradient(90deg, var(--primary-blue), #0056b3);
    transform: translateY(-3px);
}

/* =========================================
   6. PORTFOLYO SLIDER (YATAY KAYDIRMA)
   ========================================= */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1; /* Arka planın üstünde */
}

/* Bölüm başlıklarının merkezi hizalanması */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.portfolio-slider {
    display: flex;
    overflow-x: auto; /* Yatay kaydırma */
    gap: 30px;
    padding: 20px 10px 40px 10px; /* Alt boşluk gölge için */
    scroll-snap-type: x mandatory; /* Kartların tam oturması için */
    -webkit-overflow-scrolling: touch; /* Mobilde akıcı kaydırma */
    scrollbar-width: none; /* Firefox scrollbar gizle */
}

/* Chrome/Safari scrollbar gizle */
.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 340px; /* Kart genişliği */
    flex: 0 0 auto; /* Esnemesin */
    scroll-snap-align: center; /* Ortada dursun */
    background: rgba(255, 255, 255, 0.9); /* Yarı saydam beyaz */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    /* Don't override the slider's transform (JS sets translate+scale inline).
       Instead, visually lift the card with shadow and z-index; scaling is applied
       to the inner wrapper (.card-inner) so JS doesn't conflict. */
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    z-index: 12;
}

/* Tools tags under project title */
.card-tools {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.card-tools .tool {
    background: rgba(0,0,0,0.06);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Inner content wrapper so hover-scale doesn't conflict with slider JS transforms */
.card-inner {
    transition: transform 180ms ease, filter 180ms ease;
    transform-origin: center;
}
.project-card:hover .card-inner {
    transform: scale(1.03);
}

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

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-info span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.slider-hint {
    text-align: center;
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-top: -20px;
    opacity: 0.7;
}
/* --- DÜZELTME BAŞLANGICI --- */

/* 1. Kartın içindeki boşluğu biraz azaltarak içeriğe yer açıyoruz */
.card-info { 
    padding: 15px; /* 20px'ten 15px'e düşürüldü */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 150px; /* Resimden kalan boşluk */
}

/* 2. Uzun başlıkların taşmasını önlemek için yazı boyutunu dengeliyoruz */
.card-info h3 {
    font-size: 1.2rem; /* Çok büyük başlıkları küçültür */
    margin: 5px 0;
    line-height: 1.3;
}

/* 3. Araçların (tools) taşmasını önleyip sığmayanları alt satıra alıyoruz */
.card-tools {
    display: flex;
    flex-wrap: wrap; /* SIĞMAYANI ALT SATIRA ATAR */
    justify-content: center;
    gap: 5px; /* Etiketler arası boşluk */
    margin-top: auto; /* En alta yaslar */
}

.tool {
    font-size: 0.85rem;
    background-color: #f0f8ff; /* Hafif bir arka plan rengi */
    padding: 3px 8px;
    border-radius: 5px;
    color: #555;
    border: 1px solid #e1e1e1;
}

/* --- DÜZELTME BİTİŞİ --- */

/* =========================================
   7. HAKKIMDA (CAM EFEKTİ)
   ========================================= */
.bg-glass {
    /* Hakkımda bölümü yazısı okunsun diye cam efekti */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.text-link {
    color: var(--primary-orange);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-orange);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* =========================================
   8. İLETİŞİM VE FOOTER
   ========================================= */
.contact-container {
    max-width: 700px;
    text-align: center;
}

.contact-desc {
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-main);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer Opak Siyah */
.site-footer {
    background: #111111; /* Footer arka planı kapatır */
    color: #fff;
    padding: 40px 0;
    position: relative;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links .icon-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    /* Header: logo üstte, linkler altta; daha kompakt bir düzen */
    .header-inner {
        flex-direction: column;
        gap: 10px; /* Çok fazla boşluk olmasın */
        padding: 8px 0; /* İç boşluğu azaltarak header'ı incelt */
    }

    /* Beyaz blok (header) biraz daha ince olsun */
    .site-header {
        padding: 8px 0;
        background: rgba(255,255,255,0.95);
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    /* Logo biraz daha küçük, mobilde yer tasarrufu */
    .logo-placeholder img {
        height: 30px; /* mobilde daha küçük */
    }

    /* --- MOBİL MENÜ DÜZENLEMESİ (2x2 Dengeli Görünüm) --- */

@media (max-width: 768px) {
    /* ... diğer mobil kodların burada kalabilir ... */

    .nav {
        display: grid; /* Flex yerine Grid kullanıyoruz */
        grid-template-columns: 1fr 1fr; /* Ekranı tam ortadan ikiye böl */
        gap: 15px; /* Linkler arasındaki boşluk */
        width: 100%; /* Menü genişliğini %100 yap */
        margin-top: 10px; /* Logodan biraz uzaklaştır */
    }

    .nav a {
        text-align: center; /* Yazıları kendi kutusunda ortala */
        display: block; /* Tıklama alanını genişlet */
        width: auto;
    }
}

    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
/* Header İç Düzeni - Logoyu sola, menüyü sağa iter */
.header-inner {
    display: flex;
    justify-content: space-between; /* Logo sol, menü sağ */
    align-items: center; /* Dikey ortalama */
    padding: 15px 0; /* Header'ın üst ve alt boşluğu */
}

/* Logo Kapsayıcısı */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px; /* Logo görseli ile yazı arasındaki boşluk */
}

/* Logo Görseli Boyutu - BURADAN AYARLAYIN */
.logo-placeholder img {
    height: 36px; /* Logonun yüksekliği - daha küçük */
    width: auto;  /* Genişlik orantılı olarak otomatik ayarlanır */
    object-fit: contain;
}

/* Nav öğelerini biraz aşağı kaydır (header içindeki bağlantılar) */
.nav {
    margin-top: 6px;
}

/* Logo Yanındaki Yazı Stili (Opsiyonel) */
.logo-placeholder span {
    font-weight: 700;
    font-size: 20px;
    color: #333; /* Yazı rengi */
}
.profile-wrapper a {
    cursor: pointer;
    display: inline-block; /* Linkin resim boyutunu almasını sağlar */
}
/* --- JS İÇİN GEREKLİ STİLLER --- */

/* 1. Sticky Header Stili */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95); /* Hafif transparan beyaz */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Gölge ekle */
    padding: 10px 0; /* Biraz küçült */
    transition: all 0.3s ease;
}

/* 2. Fade-in Animasyonu Başlangıç Durumu */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px); /* Hafif aşağıda başla */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

/* Görünür Olduğundaki Durum */
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* 3. Daktilo İmleci Efekti */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
.gradient-text {
    /* Turuncudan Maviye Geçiş Rengi */
    background: linear-gradient(45deg, #FF512F, #2196F3);
    
    /* Arka planı sadece metnin içine kırpar */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Metnin kendi rengini şeffaf yapar ki arka plan görünsün */
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* Tarayıcı uyumluluğu ve düzgün render için */
    display: inline-block;
}

/* Project modal (popup) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: #fff;
    max-width: min(1000px, calc(100% - 40px));
    width: 100%;
    max-height: 90vh; /* ensure modal fits vertically */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    display: flex;
    gap: 20px;
}
.modal-image {
    flex: 1 1 100%;
    min-height: 200px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-image img {
    width: auto;
    max-width: 100%;
    max-height: 88vh; /* fit vertically inside viewport */
    object-fit: contain;
    display: block;
}
.modal-body {
    flex: 1 1 40%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal-body h3 { margin: 0; font-size: 1.6rem; }
.modal-body p { color: var(--text-grey); margin: 0; }
.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.modal-close i { font-size: 18px; color: #333; }

@media (max-width: 768px) {
    .modal-content { flex-direction: column; max-width: 520px; }
    .modal-image { min-height: 220px; }
}

/* ===== Logo override =====
   Inline <style> in `index.html` sets a larger logo height (50px).
   Add a specific rule here to override that (uses !important so the smaller
   size applies even when the page includes inline styles). */
.site-header .logo-placeholder img {
    height: 36px !important;
    width: auto !important;
}
.site-header .site-logo {
    height: 32px !important;
    width: auto !important;
}
@media (max-width: 768px) {
    .site-header .logo-placeholder img {
        height: 30px !important;
    }
    .site-header .site-logo {
        height: 28px !important;
    }
}
#lyrics-section {
    padding-top: 60px;
}

.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.lyric-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.lyric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.lyric-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

.lyric-card .preview {
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #FF512F;
}
.lyrics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.lyrics-modal-content {
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeUp 0.4s ease;
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.6;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.lyrics-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}
/* --- MOBİL UYUMLULUK (RESPONSIVE) AYARLARI --- */

@media (max-width: 768px) {
    
    /* 1. GENEL AYARLAR */
    .container {
        padding: 0 20px; /* Kenar boşluklarını daralt */
    }
    .section-title {
        font-size: 1.8rem; /* Başlıkları biraz küçült */
        margin-bottom: 30px;
    }

    /* 2. HEADER (MENÜ) */
    .header-inner {
        flex-direction: column; /* Logoyu ve menüyü alt alta al */
        gap: 15px;
    }
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .nav a {
        font-size: 0.9rem; /* Link yazılarını dengele */
    }

    /* 3. HERO (GİRİŞ) BÖLÜMÜ */
    .hero-section {
        padding-top: 100px; /* Header alt alta gelince üst boşluğu artır */
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem; /* İsmi ekrana sığdır */
    }
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    .cta-button {
        display: block; /* Butonları blok yap */
        width: 100%; /* Tam genişlik */
        margin: 10px 0 !important; /* Alt alta boşluk ver */
    }

    /* 4. PORTFÖY SLIDER VE KARTLAR */
    .slider-wrapper, .lyrics-slider-wrapper {
        height: 500px; /* Mobilde kartların sığması için yükseklik artışı */
    }
    
    .project-card, .lyric-card {
        width: 85vw !important; /* Genişliği ekranın %85'i yap */
        max-width: 320px; /* Çok büyürse sınırla */
        height: auto !important; /* İçeriğe göre uzasın */
        min-height: 400px;
    }
    
    .card-image {
        height: 200px; /* Resim yüksekliğini mobilde biraz kıs */
    }

    /* Önceki soruda düzelttiğimiz kart içi ayarlarının mobilde bozulmaması için */
    .card-info {
        height: auto; 
        padding: 15px;
    }

    /* Slider oklarını (Prev/Next) mobilde içeri girmesini önle veya küçült */
    .slider-btn, .lyrics-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9); /* Arkaplanı belirginleştir */
    }
    .prev-btn, .l-prev { left: 5px; }
    .next-btn, .l-next { right: 5px; }

    /* 5. HAKKIMDA BÖLÜMÜ */
    .about-container {
        display: flex;
        flex-direction: column-reverse; /* Resmi üste, metni alta al (veya tam tersi) */
        text-align: center;
        gap: 30px;
    }
    .about-image img {
        width: 150px; /* Mobilde devasa olmasın */
        height: 150px;
        margin: 0 auto;
    }
    .section-title.left-align {
        text-align: center; /* Sola dayalı başlığı ortala */
    }

    /* 6. İLETİŞİM */
    .contact-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 7. POPUP MODAL */
    .lyrics-modal-content {
        width: 95%; /* Mobilde tam genişlik */
        padding: 25px;
        margin: 0 auto;
    }
    .lyrics-modal-content h3 {
        font-size: 1.5rem;
    }
    .lyrics-modal-content pre {
        font-size: 0.9rem; /* Şiir yazısını küçült */
    }
    .lyrics-close {
        font-size: 30px;
        padding: 10px; /* Dokunmatik alanını büyüt */
    }
    
    /* 8. ALBÜM LİSTESİ */
    .album-tracklist li {
        font-size: 0.9rem;
    }
}