:root {
    --bg-dark: #0a0b0d;
    --bg-card: #12141c;
    --accent-purple: #7000ff;
    --accent-crimson: #a8002a;
    --text-gold: #ffda90;
    --text-muted: #c3c4c5;
    --text-secondary: #e6e6e6;
    --text-dark-brown: #4a2900;
    --text-dark-brown-hover: #9f6927;
    /* Font değişkeni mühürlendi 🎯 */
    --font-gothic: 'Crimson Text', serif;
}

/* 1. Tüm Sayfada Genel Gezinme İmleci */
html,
body {
    /* Görsel yolu, yedek imleç türü (auto) ve tıklama noktası (0 0 -> sol üst köşe) */
    cursor: url('../images/Cursor.png') 0 0, auto !important;
}

/* 2. Butonlar, Linkler ve Tıklanabilir Tüm Alanlar İçin Etkileşim İmleci */
a,
button,
.btn,
.btn-gothic,
.btn-outline-gothic,
.parchment-box,
.btn-parchment-action,
.nav-link,
[role="button"],
input[type="submit"] {
    cursor: url('../images/Cursor.png') 0 0, pointer !important;
}

/* 🎯 TÜM ELEMANLARI CRIMSON TEXT YAPMA KURALI */
*,
body,
button,
input,
select,
textarea {
    font-family: var(--font-gothic) !important;
    letter-spacing: 1px;
}

/* 🚫 SÜRÜKLENEBİLİR ALANLARDA METİN SEÇİMİNİ VE GHOST DRAG'İ ENGELLEME */
.guide-card, 
.lore-container, 
.draggable-area {
    /* Metinlerin fareyle maviye boyanıp seçilmesini engeller */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* Görsellerin hayalet sürüklenmesini (Ghost Drag) engeller */
    -webkit-user-drag: none;
}

/* Kartların içindeki tüm resimlere de sürükleme engelini çakıyoruz */
.guide-card img,
.draggable-area img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* Resimlerin mouse tıklamalarını yutmasını engeller */
}

body {
    background-color: var(--bg-dark);
    color: #e1e3e6;
    font-size: 1.15rem;
    /* Crimson Text tırnaklı olduğu için okunurluğu artırdık */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Eğer başlıkları eskisi gibi Cinzel tutmak istersen bu bloğu bırakabilirsin, 
   ama "HER YERDE Crimson Text olsun" dersen aşağıdaki bloğu tamamen silebilirsin canım! */
h1,
h2,
h3,
h4,
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.text-secondaryko {
    color: var(--text-secondary) !important;
}

.text-mutedko {
    color: var(--text-secondary) !important;
}


/* --- NAVBAR --- */
.navbar {
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(112, 0, 255, 0.2);
    transition: all 0.3s ease;
}

/* --- DİKDÖRTGEN LOGO AYARLARI --- */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-logo {
    /* Dikdörtgen logonun navbar içinde taşmasını önleyen ideal yükseklik */
    height: 45px;
    width: auto;
    /* Orantıyı korur, yayvanlaşmayı engeller */
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Hafif gotik parıltı dokunuşu */
    filter: drop-shadow(0 0 8px rgba(229, 185, 95, 0.2));
}

/* Üzerine gelince tatlı bir büyüme ve altın parıltı efekti */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(229, 185, 95, 0.5));
}

/* Mobil Ekranlar İçin Minik Boyut Ayarı */
@media (max-width: 768px) {
    .navbar-logo {
        height: 36px;
        /* Mobilde hamburger menüyü sıkıştırmasın diye hafif küçülttük */
    }
}

/* ==========================================
   🏰 NAV-LINK GOTİK BUTON ARKA PLAN STİLLERİ
   ========================================== */

.navbar-nav {
    gap: 12px;
    /* Butonlar arası nefes payı */
    align-items: center;
    /* Tüm butonları dikeyde TAM ORTALAR */
}

/* 🎯 1. SOLDAN SAĞA TÜM İÇ MENÜ LINKLERI (Eşit Boyut Kalkanı) */
.nav-link {
    color: var(--text-dark-brown) !important;
    font-size: 0.95rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);

    /* 🎯 BUTON BOYUTLARINI İKİZ GİBİ SIFIRLADIK */
    width: 140px !important;
    /* Hepsi aynı genişlikte (Hikaye de, Özellikler de!) */
    height: 48px !important;
    /* Hepsi aynı yükseklikte */

    background-image: url('../images/Apply_Button.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100% !important;
    /* Görseli buton kutusuna tam yayar, büzüşmeyi önler */

    padding: 0 !important;
    /* Flex center ile içindeki yazıyı milimetrik ortalıyoruz */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;

    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* Hover & Active Efektleri */
.nav-link:hover {
    color: #000000 !important;
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 0 10px rgba(229, 185, 95, 0.7));
}

.nav-link:active {
    transform: translateY(1px) scale(0.98);
}

/* 🎯 2. SAĞDAKİ "ŞİMDİ OYNA" PARŞÖMEN BUTONU */
.btn-gothic {
    /* Soldaki butonlarla milimetrik aynı yükseklik! */
    width: 155px !important;
    height: 48px !important;

    background-image: url('../images/Button_Bg-1.png') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    background-color: transparent !important;

    color: var(--text-dark-brown) !important;
    font-size: 0.95rem;
    font-weight: 800;

    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;

    filter: drop-shadow(0 0 10px rgba(112, 0, 255, 0.4));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-gothic:hover {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 0 15px rgba(229, 185, 95, 0.8));
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    background-color: var(--bg-dark);
    /* Görsel gelene kadar ekranı kaplayan gotik karanlık */
    background-image: linear-gradient(180deg, rgba(10, 11, 13, 0.4) 0%, var(--bg-dark) 100%),
        url('../images/VanthloreBackgroundWebBanner.webp');
    /* 2 MB'lık tüy sıklet görselimiz */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(112, 0, 255, 0.6);
}

.hero-subtitle {
    color: var(--text-gold);
    font-size: 1.5rem;
    font-style: italic;
    /* Gotik roman havasını katladık! */
    margin-bottom: 2rem;
}

.btn-gothic {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-crimson));
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gothic:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(168, 0, 42, 0.7);
    color: #fff;
}

.btn-outline-gothic {
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-gothic:hover {
    background: var(--text-gold);
    color: var(--bg-dark);
}

/* --- FEATURE CARDS --- */
.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
}

/* --- LORE SECTION --- */
.lore-container {
    background: linear-gradient(90deg, rgba(18, 20, 28, 0.9) 0%, rgba(10, 11, 13, 0.95) 100%);
    border-left: 4px solid var(--accent-crimson);
    padding: 3rem;
    border-radius: 4px;
}

/* ==========================================
   📜 LIORA & HALAN DUAL PORTRAIT FIXED WIDGET
   ========================================== */
.liora-fixed-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1020 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    /* Yumuşak kapanış efekti */
}

.liora-fixed-widget * {
    pointer-events: auto;
}

/* Kapatma Butonu Konumlandırma */
.widget-close-btn {
    position: absolute;
    bottom: 16px;
    right: 24px;
    z-index: 20;
    background: rgba(18, 20, 28, 0.85);
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
}

.widget-close-btn:hover {
    background: var(--accent-crimson);
    color: #fff;
    border-color: #fff;
    transform: scale(1.15) rotate(90deg);
    /* Üzerine gelince tatlıca döner */
}

/* Kapanış Esnasında Görünmezlik Sınıfı */
.liora-fixed-widget.widget-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none !important;
}

/* 🎯 1. ÜST KISIM: Çift Karakter (Liora + Halan) Kapsayıcısı */
.liora-avatar-wrapper {
    width: 300px;
    /* 🎯 Genişliği 320px'den 240px'e çekerek birbirlerine yaklaştırdık! */
    height: 180px;
    background: transparent;
    display: flex;
    justify-content: center;
    /* Karakterleri merkeze toplar */
    align-items: flex-end;
    flex-shrink: 0;
    z-index: 5;
    pointer-events: none;
}

/* 🖼️ Liora ve Halan Görsellerinin Yan Yana Hizalanması */
.liora-avatar,
.halan-avatar {
    height: 100%;
    width: 55%;
    /* Birbirlerinin üstüne hafif barlansınlar diye %55 yaptık */
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* 🎯 Liora sağa kaysın (Halan'a yaklaşsın), Halan sola kaysın (Liora'ya yaklaşsın) */
.liora-avatar {
    transform: translateX(25px);
    /* Sağa doğru yanaştı */
    z-index: 6;
    /* Liora önde tatlı duruyor */
}

.halan-avatar {
    transform: translateX(-25px);
    /* Sola doğru yanaştı */
    z-index: 5;
}

/* Hover Efektinde de Yakınlıkları Bozulmasın */
.liora-fixed-widget:hover .liora-avatar {
    transform: translateX(20px) scale(1.03);
}

.liora-fixed-widget:hover .halan-avatar {
    transform: translateX(-20px) scale(1.03);
}

/* 🎯 2. ALT KISIM: Parşömen Kutusu & Arka Plan Görseli */
.parchment-box {
    background-image: url('/images/Button_Bg-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 280px;
    /* İki karakterin altını güzelce doldursun diye 280px yaptık */
    min-height: 125px;

    padding: 22px 25px 18px 25px;
    margin-top: -30px;
    /* Karakterlerin alt gövdeleriyle parşömeni birleştirir */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    z-index: 10;
    transition: transform 0.3s ease;
}

.parchment-box:hover {
    transform: translateY(-4px) scale(1.02);
}

.parchment-title {
    display: block;
    color: var(--text-dark-brown);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.parchment-text {
    color: var(--text-dark-brown);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.btn-parchment-action {
    display: inline-block;
    background: var(--text-dark-brown);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.btn-parchment-action:hover {
    background: var(--text-dark-brown-hover);
    transform: scale(1.05);
}

/* ==========================================
   📜 YATAYDA AKAN GOTİK REHBER BANTI STİLLERİ
   ========================================== */

.guide-scroll-wrapper {
    position: relative;
    width: 100%;
}

/* Sağ tarafa akan kartlar için kaydırılabilir kapsayıcı */
.guide-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    /* 🎯 YATAYDA AKIŞI SAĞLAR */
    overflow-y: hidden;
    padding: 15px 5px 30px 5px;
    /* Alt gölge kesilmesin diye padding */
    scroll-behavior: smooth;

    /* İnce Gotik Scrollbar Tasarımı */
    scrollbar-width: thin;
    scrollbar-color: var(--text-gold) var(--bg-card);
}

/* Chrome, Safari, Edge İçin Özel Scrollbar Stili */
.guide-scroll-container::-webkit-scrollbar {
    height: 8px;
    /* İncecik şık kaydırma çubuğu */
}

.guide-scroll-container::-webkit-scrollbar-track {
    background: #0d0e12;
    border-radius: 4px;
}

.guide-scroll-container::-webkit-scrollbar-thumb {
    background: var(--text-gold);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(229, 185, 95, 0.5);
}

/* 🎯 REHBER KARTLARI (Sabit Dikdörtgen Yapı) */
.guide-card {
    flex: 0 0 340px;
    /* 🎯 Mobilde ve PC'de kartların küçülmesini engeller, sabit 340px tutar */
    background-color: var(--bg-card);
    border: 1px solid rgba(229, 185, 95, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-6px);
    border-color: var(--text-gold);
    box-shadow: 0 10px 25px rgba(112, 0, 255, 0.25);
}

/* Görsel Kutusunun Dikdörtgen Yapısı */
.guide-img-wrapper {
    width: 100%;
    height: 190px;
    /* 🎯 Dikdörtgen ekran görüntüsü oranı */
    overflow: hidden;
    background-color: #050607;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Görseli basmadan, tam dikdörtgen alana sığdırır */
    transition: transform 0.4s ease;
}

.guide-card:hover .guide-img {
    transform: scale(1.06);
    /* Üzerine gelince resim tatlıca büyür */
}

/* Kart Açıklama Alanı */
.guide-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guide-text {
    color: var(--text-mutedko, #9aa0a6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;

    /* 🎯 3 Satır Kısıtlaması & Ellipsis (...) Entegrasyonu */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ==========================================
   🎯 EKRANA SABİT (FIXED) AKSİYON BUTONLARI
   ========================================== */
.fixed-action-buttons {
    position: fixed;
    bottom: 20px;
    left: 48px;
    /* Liora widget'ının sol tarafına hizalar */
    z-index: 1020 !important;
    display: flex;
    flex-direction: row;
    /* Masaüstünde yan yana dururlar */
    gap: 12px;
    pointer-events: auto;
}

.btn-fixed {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 200px !important;
    height: 62px !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
}

.btn-fixed .btn-icon {
    width: 32px;
    height: 32px;
    margin-right: 6px;
}

/* ==========================================
   🏰 GOTİK FOOTER & SOCIALS STİLLERİ
   ========================================== */
footer {
    background-color: #050607;
    border-top: 1px solid rgba(229, 185, 95, 0.15);
    padding: 3rem 0 2rem 0;
    color: var(--text-muted);
    position: relative;
    margin-bottom: 200px;
}

/* Sosyal Medya İkon Kapsayıcısı */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* Tekil Sosyal Medya Butonu */
.social-icon-btn {
    width: 44px;
    height: 44px;
    background: #0d0e12;
    border: 1px solid rgba(229, 185, 95, 0.3);
    border-radius: 50%;
    color: var(--text-gold) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Üzerine Gelindiğinde (Hover Efekti) */
.social-icon-btn:hover {
    background: var(--accent-purple);
    color: #ffffff !important;
    border-color: var(--text-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 18px rgba(112, 0, 255, 0.6), 0 0 8px rgba(229, 185, 95, 0.4);
}

/* Tıklanma Anı */
.social-icon-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* ==========================================
   🛡️ FOOTER GİZLİLİK POLİTİKASI LİNK STİLLERİ
   ========================================== */
.footer-privacy-link {
    color: var(--text-gold) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px dashed rgba(255, 218, 144, 0.4);
}

.footer-privacy-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 10px rgba(229, 185, 95, 0.6);
}

/* ==========================================
   🖼️ GOTİK REHBER MODALI STİLLERİ & Z-INDEX KİLİDİ
   ========================================== */

/* 🎯 Bootstrap Modal Siyah Karartma Perdesi (Backdrop) */
.modal-backdrop {
    z-index: 10040 !important;
    /* Sabit butonların ve Liora'nın üstünü örter */
}

/* 🎯 Modal Penceresinin Kendisi */
.modal {
    z-index: 10050 !important;
    /* Karartmanın da üstüne çıkar */
}

.gothic-modal-content {
    background: linear-gradient(135deg, #12141c 0%, #0a0b0d 100%) !important;
    border: 2px solid var(--text-gold) !important;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.4), 0 0 20px rgba(229, 185, 95, 0.3);
    border-radius: 12px !important;
}

.gothic-modal-header {
    border-bottom: 1px solid rgba(229, 185, 95, 0.3) !important;
    padding: 15px 25px;
}

.gothic-modal-body {
    padding: 25px;
}

.modal-img-wrapper img {
    max-height: 65vh;
    /* Ekranın %65'inden fazla uzayıp taşırmaz */
    width: 100%;
    object-fit: contain;
    /* Görseli bozmadan tam gösterir */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.modal-text {
    color: #e6e6e6 !important;
    line-height: 1.6;
}

/* ==========================================
   📖 DİNAMİK LORE KARTLARI STİLLERİ
   ========================================== */

.lore-card-quote {
    color: var(--text-gold);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Kartta 1 satırdan fazlasını gizler, modala saklar */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modaldaki gotik alıntı yazısı */
#modalLoreQuote {
    color: var(--text-gold) !important;
    font-size: 1.15rem;
    border-left: 3px solid var(--accent-crimson);
    padding-left: 12px;
    text-align: left;
    margin: 15px auto;
    max-width: 90%;
}

/* ==========================================
   📜 GOTİK SSS (FAQ) AKORDEON STİLLERİ
   ========================================== */

.gothic-accordion .accordion-item {
    background-color: var(--bg-card) !important;
    border: 1px solid rgba(229, 185, 95, 0.25) !important;
    border-radius: 8px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gothic-accordion .accordion-item:hover {
    border-color: var(--text-gold) !important;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

/* Akordeon Başlık Butonu */
.gothic-accordion .accordion-button {
    background-color: #12141c !important;
    color: var(--text-gold) !important;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 18px 24px;
    box-shadow: none !important;
}

/* Başlık Açıldığında (Active) Stili */
.gothic-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(112, 0, 255, 0.2) 0%, rgba(18, 20, 28, 0.9) 100%) !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(229, 185, 95, 0.2);
}

/* Akordeon Ok İkonunun Altın Renge Dönüşmesi */
.gothic-accordion .accordion-button::after {
    filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(350deg) brightness(100%);
    transition: transform 0.3s ease;
}

/* Akordeon Gövde Açıklaması */
.gothic-accordion .accordion-body {
    background-color: #0a0b0d !important;
    color: var(--text-secondary, #e6e6e6) !important;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 22px 26px;
}

/* ==========================================
   📩 GOTİK BİZE ULAŞIN (CONTACT) STİLLERİ
   ========================================== */

/* Gotik Bölüm Ayırıcı Çizgi */
.gothic-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 185, 95, 0.4), transparent);
}

/* İletişim Kartı Kapsayıcısı */
.gothic-contact-card {
    background: linear-gradient(145deg, #12141c 0%, #0a0b0d 100%);
    border: 1px solid rgba(229, 185, 95, 0.3);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(112, 0, 255, 0.15);
}

/* Input ve Textarea Özel Stilleri */
.gothic-input {
    background-color: #07080a !important;
    border: 1px solid rgba(229, 185, 95, 0.25) !important;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.gothic-input::placeholder {
    color: #6c757d !important;
    font-style: italic;
}

/* Input'a Tıklanınca (Focus) Altın Parıltı Efekti */
.gothic-input:focus {
    background-color: #0d0e12 !important;
    border-color: var(--text-gold) !important;
    box-shadow: 0 0 12px rgba(229, 185, 95, 0.4) !important;
    outline: none !important;
}

/* Başarı Bildirimi Kutusu */
.gothic-alert {
    background: rgba(18, 20, 28, 0.95);
    border: 1px solid var(--text-gold);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(229, 185, 95, 0.2);
}

.sender_btn {
    width: 400px !important;
}

/* 🌍 DİL SEÇİCİ DROPDOWN STİLLERİ */
#languageSelectorMenu .dropdown-item {
    color: #e1e3e6 !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

#languageSelectorMenu .dropdown-item:hover,
#languageSelectorMenu .dropdown-item.active {
    background-color: var(--accent-purple) !important;
    color: var(--text-gold) !important;
}


/* 📱 MOBİL EKRANLARDA (Liora ile Üst Üste Binmesin Diye) */
@media (max-width: 716px) {
    .fixed-action-buttons {
        bottom: 15px !important;
        left: 16px !important;
        /* Minyatür Liora'nın sol tarafına yanaşır */
        flex-direction: column !important;
        /* Mobilde yer kaplamasın diye üst üste binerler */
        gap: 8px !important;
    }

    .btn-fixed {
        width: 150px !important;
        /* Mobilde daha kibar buton boyutu */
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    .btn-fixed .btn-icon {
        width: 32px;
        height: 32px;
        margin-right: 4px;
    }
}

/* 📱 MOBİL UYUM (Telefonlarda Tüy Sıklet Duruş) */
@media (max-width: 716px) {
    .guide-card {
        flex: 0 0 280px;
        /* Mobilde kartlar ekranı kaplamasın diye 280px genişliğe çektik */
    }

    .guide-img-wrapper {
        height: 150px;
    }
}

/* ==========================================
   📱 MOBİL EKRANLAR İÇİN MİLİMETRİK UYUM
   ========================================== */
@media (max-width: 716px) {

    /* 1. HERO YAZILARINI BÜYÜTME VE YUKARI HİZALAMA */
    .hero-section {
        padding-top: 90px !important;
        align-items: flex-start !important;
    }

    .hero-title {
        font-size: 3rem !important;
        /* 🎯 1.8rem -> 2.3rem (Okunurluk tavan yaptı) */
        margin-top: 10px;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 2rem !important;
        /* 🎯 0.95rem -> 1.15rem */
        margin-bottom: 1.2rem !important;
    }

    /* Hero açıklama paragrafı (Darion ile unutulmuş...) */
    .hero-section p.text-secondary,
    .hero-text {
        font-size: 1.05rem !important;
        /* 🎯 0.9rem -> 1.05rem */
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }

    /* 2. BUTONLARI MOBİLDE SOL ALTA YANAŞTIRMA */
    .hero-section .d-flex {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        /* 🎯 Ortadan alıp SOLA kilitledik */
        justify-content: flex-start !important;
        gap: 12px !important;
    }

    /* Butonların sol hizada durması */
    .hero-section .btn-gothic,
    .hero-section .btn-outline-gothic,
    .hero-section .btn {
        margin: 0 !important;
        /* 🎯 Sol payı sıfırladık, sol alta geçti */
    }

    /* 📜 Liora & Halan Widget Mobil Minyatür Boyut Ayarları */
    .liora-fixed-widget {
        bottom: 10px !important;
        right: 10px !important;
    }

    .liora-avatar-wrapper {
        width: 140px !important;
        /* 🎯 200px -> 140px'e çekildi */
        height: 90px !important;
        /* 🎯 Portreler daha minik ve kibar */
    }

    .liora-avatar {
        transform: translateX(15px) !important;
    }

    .halan-avatar {
        transform: translateX(-15px) !important;
    }

    .parchment-box {
        width: 140px !important;
        /* 🎯 180px -> 140px'e çekildi */
        min-height: 80px !important;
        padding: 10px 12px 8px 12px !important;
        margin-top: -15px !important;
    }

    .parchment-title {
        font-size: 0.65rem !important;
        margin-bottom: 1px !important;
    }

    .parchment-text {
        font-size: 0.6rem !important;
        line-height: 1 !important;
        margin-bottom: 4px !important;
    }

    .btn-parchment-action {
        font-size: 0.65rem !important;
        padding: 2px 8px !important;
    }

    .widget-close-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.8rem !important;
        bottom: 8px !important;
        right: 12px !important;
    }

    .sender_btn {
        width: 100% !important;
    }
}