@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Pinyon+Script&display=swap');

:root {
    /* Renk Paleti */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    /* Daha parlak beyaz */
    --text-muted: #a0a0a0;
    /* Daha okunabilir gri */
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf55;

    --navbar-height: auto;
    /* Efekt Değişkenleri */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Yatay kaydırmayı kesinlikle engelle */
    position: relative;
    /* Mobilde taşmayı tutmak için yardımcı olur */
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    /* Daha dramatik bir sahne ışığı */
    background-image: radial-gradient(circle at 50% -20%, #2a2a2a 0%, #0a0a0a 70%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    display: flex;
    /* EKLENDİ */
    flex-direction: column;
    /* EKLENDİ */
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- ORTAK YAPILAR --- */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    /* Landing için dikey ortalama */
}

footer {
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    margin-top: 4rem;
    /* İçerikle arasına mesafe koy */

    /* İnce bir üst çizgi ve hafif arka plan */
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    /* Yazı Stili */
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

footer span {
    opacity: 0.7;
    transition: opacity 0.3s;
}

footer:hover span {
    opacity: 1;
    color: var(--accent-gold);
}

/* Navbar Navbar üstte sabit kaldığı için içeriği aşağı itmek gerek */
.content-page {
    padding-top: 120px !important;
    justify-content: flex-start;
    /* İçerik sayfalarında üstten başla */
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Tipografi */

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1,
h2,
h3,
.about-title,
.article-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}


.page-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* --- LANDING PAGE (DÜZELTİLDİ) --- */
.landing-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.brand-name {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.brand-title {
    color: var(--accent-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 30px;
    display: inline-block;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.message {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Eksik olan Loader Line */
.loader-line {
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    margin: 30px auto 10px;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: loadLine 2s ease-in-out forwards;
}

.status-text {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
}

/* NAVBAR (YENİLENMİŞ V2) */
.navbar {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);

    /* Önemli Değişiklikler */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Daha akıcı bir hareket */
    transform: translateY(0);
    /* Varsayılan olarak görünür */
}

/* Aşağı kaydırırken navbar'ı gizlemek için */
.navbar-hidden {
    transform: translateY(-100%);
}

/* Yukarı kaydırırken veya en tepedeyken navbar'ı göstermek için */
.navbar-visible {
    transform: translateY(0);
}

/* MARKA / LOGO ALANI (EN ÖNEMLİ KISIM) */
.nav-brand a {
    font-family: 'Pinyon Script', cursive;
    /* İmza Fontu */
    font-size: 2.2rem;
    /* Daha büyük ve iddialı */
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Derinlik */
}

/* Hover Efekti: İmza parlasın */
.nav-brand a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
    /* Hafifçe büyüsün */
}

/* Linkler - Logoyu ezmemesi için biraz sadeleşti */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    /* Daha minimal */
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Harf aralığı çok açık (Modern durur) */
    font-weight: 400;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    /* Ortadan dışa doğru açılsın */
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {

    :root {
        --navbar-height: 50px;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-brand a {
        font-size: 1.8rem;
    }
}

/* --- HİKAYELER LİSTESİ (DÜZELTİLDİ) --- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    /* Daha keskin köşeler daha modern durabilir */
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 0.1rem;
}

/* --- HİERARŞİK KOMPAKT KART --- */
.story-card-image {
    height: 140px;
    /* İçerikten daha fazla yer kaplaması için yüksekliği artırdık */
    width: 100%;
    overflow: hidden;
    position: relative;
    /* İçindeki resmin hizalanması için gerekli */
    background: #000;
}

.story-card-image img {
    /* Resmi kapsayıcının dışına taşacak kadar büyütüyoruz */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 120%;
    /* Hafif bir dikey zoom */

    /* Resmi tam merkeze sabitleme */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}


/* Hover durumunda zoom etkisini derinleştiriyoruz */
.story-card:hover .story-card-image img {
    transform: translate(-50%, -50%) scale(1.15);
    /* Hem merkezde kal hem de büyü */
    opacity: 1;
}

.story-card-content {
    padding: 1.2rem;
    /* Görseli öne çıkarmak için metin alanını biraz daralttık */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
}


.story-category {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.story-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
}

.story-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
}

.story-date {
    font-size: 0.8rem;
    color: #666;
}

.read-more {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
}

/* --- HİKAYE DETAY & OKUMA MODU --- */
.read-mode {
    max-width: 800px;
    /* Okuma kolaylığı için daraltıldı */
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent-gold);
}

.story-meta {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content {
    font-size: 1.25rem;
    /* Daha büyük okuma fontu */
    line-height: 1.9;
    color: #dcdcdc;
    font-family: 'Playfair Display', serif;
    /* Hikaye metni serif olsun */
}

.story-content p {
    margin-bottom: 2rem;
}

.demo-note {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- style.css dosyasının ilgili bölümü --- */

/* --- ABOUT SAYFASI (SANATÇI MODU) --- */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 2rem;
}

.about-grid {
    display: flex;
    flex-direction: column;
    /* Alt alta dizilim */
    align-items: center;
    /* Ortala */
    max-width: 800px;
    /* Çok geniş olmasın, kitap sayfası gibi */
    margin: 0 auto;
    text-align: center;
    /* Yazıları ortala */
    gap: 2rem;
}

/* Görsel Alanı */
.about-image-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

/* Faded Borders (Silik Kenarlar) Efekti */
.image-frame {
    width: 200px;
    /* Çok daha küçük, kompakt */
    height: 200px;
    /* Kare veya Daire olması için */
    position: relative;

    /* Eski çerçeve çizgilerini kaldırıyoruz */
    background: transparent;
    border: none;
    box-shadow: none;

    /* Vinyet (Maskeleme) Efekti: Kenarlar yumuşakça yok olur */
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);

    /* Hafif süzülme animasyonu devam etsin */
    animation: floatImage 6s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya sığdır */
    object-position: top center;
    /* Kafayı ortala */

    /* Sepia tonu artırıldı, daha nostaljik */
    filter: sepia(40%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}

/* Hover yapınca netleşsin */
.image-frame:hover .profile-image {
    filter: sepia(0%) contrast(1) brightness(1);
}

/* Metin Alanı */
.about-text-content {
    animation-delay: 0.2s;
    /* Resimden hemen sonra gelsin */
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 90%;
    /* Satırlar çok uzamasın, okunabilir olsun */
    margin-left: auto;
    margin-right: auto;
}

.signature {
    margin-top: 2rem;
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    /* İmza biraz daha büyük */
    color: var(--accent-gold);
    text-align: center;
    /* İmzayı da ortaladık */
    opacity: 0.8;
}

/* Mobilde zaten flex-column olduğu için ekstra ayara gerek yok,
   ama boşlukları biraz kısabiliriz */
@media (max-width: 768px) {
    .image-frame {
        width: 150px;
        height: 150px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-body p {
        font-size: 1rem;
    }
}

/* MOBİL UYUM (Tablet ve Telefon) */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        /* Tek sütuna düşür */
        gap: 3rem;
        text-align: center;
        /* Mobilde metni ortala */
    }

    .about-text-content,
    .signature {
        text-align: center;
    }

    /* Mobilde resmi üste almak istersen bu satırı açabilirsin: */
    /* .about-image-content { order: -1; } */

    .about-title {
        font-size: 2.5rem;
    }

    .profile-image {
        max-width: 100%;
    }
}


/* --- BUTONLAR --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* --- ANİMASYONLAR --- */
@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        width: 100px;
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBİL --- */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .about-wrapper {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 15px;
    }

    .content-page {
        padding: 1rem;
        padding-top: 60px !important;
        justify-content: flex-start;
        /* İçerik sayfalarında üstten başla */
    }

}

.fade-up {
    opacity: 1 !important;
    transform: none !important;
}

/* --- BURGER MENU STİLLERİ --- */

/* Varsayılan olarak Burger Menüyü Gizle (Masaüstü) */
.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--text-heading, #333);
    /* Tema rengine uyumlu */
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- MOBİL GÖRÜNÜM --- */
@media screen and (max-width: 768px) {

    /* Navbar düzenini mobilde koru */
    .navbar {
        justify-content: space-between;
        padding: 0 1.5rem;
        /* Menü bunun içinde pozisyonlanacak */
    }


    /* Burger Menüyü Göster */
    .burger-menu {
        display: block;
        z-index: 1001;
        /* En üstte olsun */
    }

    /* Linkleri Gizle ve Şekillendir (Çekmece Modu) */
    .nav-links {
        /* --- POZİSYONLAMA ve KAYDIRMA AYARLARI --- */
        position: absolute;
        /* Absolute yerine Fixed: Ekrana kilitler */
        top: var(--navbar-height);
        /* Navbar yüksekliğinize göre ayarlayın (padding varsa artırın) */
        right: 0;
        bottom: 0;
        /* Alt tarafa kadar uzat */

        width: 70%;
        /* Veya tam ekran istersen 100% */
        height: calc(100vh);
        /* Navbar hariç kalan tüm yükseklik */

        /* KRİTİK KISIM: İçerik taşarsa kaydır */
        overflow-y: auto;
        overflow-x: hidden;

        /* --- GÖRSEL AYARLAR --- */
        background-color: var(--bg-card);
        border-left: 1px solid var(--accent-gold);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Ortalamak yerine üstten başlat ki scroll çalışsın */

        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;

        /* Üstten ve alttan biraz boşluk bırakalım */
        padding: 2rem 0 4rem 0;
    }

    .nav-links::-webkit-scrollbar {
        width: 4px;
        /* Çok ince */
    }

    .nav-links::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 4px;
    }

    /* Menüdeki linklerin aralığını aç */
    .nav-links li {
        margin: 0.1rem 0;
        opacity: 0;
        /* Animasyon için gizle */
    }

    /* JavaScript ile 'active' sınıfı eklenince menü kaysın */
    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
        /* Açılınca görünür olsun */
    }

    /* Linkler sırayla gelsin (Fade In efekti) */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* --- BURGER BUTON ANİMASYONU (X Olma Hareketi) --- */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* --- TEMEL DROPDOWN STİLİ --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;

    /* Varsayılan olarak gizli */
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.2s;
}

.dropdown-wrapper.active .dropdown-menu {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 25px;
    /* Hafif kayma efekti */
}

/* --- RESPONSIVE MANTIK --- */

/* DURUM 1: GENİŞ EKRAN (Masaüstü) */
@media (min-width: 1300px) {

    /* Masaüstü kategorilerini göster */
    .desktop-only-cat {
        display: block;
    }

    /* Dropdown menüyü ve ok işaretini tamamen gizle */
    .dropdown-menu {
        display: none !important;
    }

    .dropdown-icon {
        display: none !important;
    }
}

.dropdown-wrapper {
    position: relative;
    /* Menü buna göre hizalanacak */
    align-items: center;
}

/* DURUM 2: ORTA EKRAN (Tablet / Dar Laptop) */
@media (max-width: 1300px) {

    /* Masaüstü kategorilerini gizle */
    .desktop-only-cat {
        display: none;
    }

    /* Ok işaretini göster */
    .dropdown-icon {
        display: inline-block !important;
        /* Gizleme sınıfını geçersiz kıl */
        vertical-align: middle;
        margin-left: 2px;
        /* Metne daha yakın olması için manuel ayar */
    }

    /* Kütüphane üzerine gelince menüyü aç */
    .dropdown-wrapper:hover .dropdown-menu {
        display: flex;
        /* Hover olunca görünür yap */
        animation: fadeIn 0.3s ease;
    }

    .dropdown-wrapper:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBİL BURGER MENÜ İÇİ DROPDOWN DÜZENLEMESİ --- */
@media (max-width: 768px) {

    /* Kapsayıcıyı dikey dizilime zorla */
    .dropdown-wrapper {
        flex-direction: column;
        align-items: center;
        /* flex-start yerine center yapıldı */
        width: 100%;
    }

    /* Kütüphane linkinin kendisi */
    .dropdown-wrapper>a {
        width: 100%;
        padding: 15px 0;
        /* Tıklama alanı genişletildi */
        justify-content: center;
        /* Metni ve ikonu ortala */
        display: flex;
    }

    /* Mobil Dropdown Menüsü */
    .dropdown-menu {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* İçindeki maddeleri ortala */
        width: 100%;

        /* Arka planı biraz daha belirgin yapalım ki ayrışsın */
        background: rgba(255, 255, 255, 0.05);

        /* Sol çizgiyi kaldırıyoruz çünkü ortalı tasarımda çizgi kötü durur */
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* Üstüne ve altına ince çizgi */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        margin-top: 5px;
        margin-bottom: 10px;
        padding: 10px 0;
        /* padding-left kaldırıldı */

        box-shadow: none;
        backdrop-filter: none;
        transform: none;
        animation: none;
    }

    /* Dropdown içindeki linkler */
    .dropdown-menu li {
        opacity: 1 !important;
        transform: none !important;
        width: 100%;
        text-align: center;
        /* Sola yaslamayı iptal et, ortala */
        display: flex;
        justify-content: center;
    }

    .dropdown-menu li a {
        padding: 12px 0;
        /* Dikey boşluk */
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        /* Ana menüyle uyumlu olsun diye */
        color: var(--text-muted);
        width: 100%;
        display: block;
    }

    /* İkon hizalaması */
    .dropdown-icon {
        display: none !important;
    }
}

/* Sadece 'typing' sınıfına sahip olan elemanın sonunda imleç göster */
.typewriter-text.typing::after {
    content: "|";
    margin-left: 2px;
    color: var(--accent-gold);
    font-weight: bold;
    animation: blink 0.8s infinite;
    visibility: visible;
}

/* Sınıf yokken imleci tamamen gizle */
.typewriter-text::after {
    content: "|";
    visibility: hidden;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}