/* Google Font */
body {
    /* ... (font-family, background-color vb. satırları) ... */
    
    /* FOOTER'I AŞAĞIYA İTMEK İÇİN BUNLARI EKLE */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box; /* padding-top'u hesaba katmak için */
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding-top: 80px; /* Navbar yüksekliği kadar boşluk */
}

/* 1. Videoyu tutan ana konteyner */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.15;
    filter: blur(3px);
}

/* 2. YENİ <video> STİLİ (YouTube iframe yerine) */
#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /* Dikey ve yatayda ortala */
    transform: translateX(-50%) translateY(-50%);
    /* Tıklanamaz yap */
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-logo img {
    vertical-align: middle;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #E30A17;
    color: #ffffff;
}

/* Navbar Sağ Taraf */
.nav-extra {
    display: flex;
    align-items: center;
}
.btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-discord {
    background-color: #5865F2;
    color: #ffffff;
}
.btn-discord:hover {
    background-color: #4a54c9;
}
.discord-welcome {
    color: white;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}
.discord-welcome img {
    border-radius: 50%;
    margin-right: 10px;
}

/* Ana İçerik Alanı */
.main-container {
    padding: 40px 0;
    animation: fadeInContent 0.5s ease-in-out;
    
    flex: 1 0 auto;
}

/* İçerik Kutuları */
.content-box {
    background-color: rgba(24, 24, 24, 0.9);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-box h1, .content-box h2 {
    color: #E30A17;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Kural Sayfası Stilleri */
.rule-category-box { background: rgba(0,0,0,0.2); border: 1px solid #444; border-radius: 8px; padding: 20px; margin-top: 20px; }
.rule-category-box h2 { border: none; margin-top: 0; }
.rule-item { margin-bottom: 15px; }
.rule-item h3 { color: #fff; margin-bottom: 5px; }
.rule-item p { margin-top: 0; line-height: 1.6; }

/* Kadro Sayfası Stilleri */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.staff-card { background: #1f1f1f; border: 1px solid #444; border-radius: 8px; padding: 20px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.staff-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.staff-card img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid #E30A17; object-fit: cover; margin-bottom: 15px; }
.staff-card h3 { margin: 10px 0 5px 0; color: #fff; }
.staff-card .staff-rank { font-weight: 700; font-size: 0.9em; margin: 0; }
.staff-card .staff-discord { font-size: 0.8em; color: #aaa; margin-top: 5px; }

/* /css/style.css dosyasının EN ALTINA EKLE */

/* ---------------------------------- */
/* ----- YENİ GALERİ SLIDER STİLLERİ ----- */
/* ---------------------------------- */

/* 1. Ana Slider Kapsayıcısı */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px; /* Slider'ın maksimum genişliği */
    margin: 20px auto;
    background-color: #111;
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden; /* Dışarı taşan resimleri gizle */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 2. Slaytlar (Resimler) */
.slide {
    display: none; /* JS ile açılana kadar gizli */
}
.slider-image {
    width: 100%;
    height: 500px; /* Resimlerin standart yüksekliği */
    object-fit: cover; /* Resmi sığdırır, bozmaz */
    vertical-align: middle;
    cursor: pointer; /* Tıklanabilir (büyütmek için) */
    transition: opacity 0.3s ease;
}
.slider-image:hover {
    opacity: 0.8;
}

/* 3. Animasyon (Soluklaşma) */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* 4. Resim Altı Açıklama */
.slide-caption {
    text-align: center;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 1.1em;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* 5. İleri/Geri Okları */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px; /* Dikeyde ortala */
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(227, 10, 23, 0.8); /* Kırmızı hover */
}

/* 6. Nokta Navigasyonu */
.dots-container {
    text-align: center;
    padding: 15px 0;
}
.dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 4px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.dot.active, .dot:hover {
    background-color: #E30A17; /* Kırmızı */
}


/* ---------------------------------- */
/* ----- YENİ LIGHTBOX (MODAL) STİLLERİ ----- */
/* ---------------------------------- */

.modal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 1005; /* Navbar'ın bile üstünde */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95); /* Koyu arka plan */
    cursor: pointer; /* Kapatmak için tıkla */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px; /* Maksimum büyüklük */
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {transform: scale(0.5)}
    to {transform: scale(1)}
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.1em;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-modal:hover {
    color: #bbb;
}

/* Başvuru Formu Stilleri */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: #ddd; }
.form-group input[type="text"], .form-group textarea { width: 100%; padding: 12px; background: #1f1f1f; border: 1px solid #444; border-radius: 6px; color: #f0f0f0; font-family: 'Montserrat', sans-serif; box-sizing: border-box; }
.form-success { background: #28a745; color: white; padding: 15px; border-radius: 6px; margin-bottom: 20px; text-align: center; }
.form-error { background: #dc3545; color: white; padding: 15px; border-radius: 6px; margin-bottom: 20px; text-align: center; }

/* Yenilikler Sayfası Stilleri */
.update-post .update-content { line-height: 1.7; }
.update-post .update-content img { max-width: 100%; border-radius: 8px; }

/* Footer */
.footer {
    background-color: #1a1a1a; /* Koyu Gri (Okunur) */
    border-top: 1px solid #333;
    color: #888; /* Yazı rengi (Koyu arkaplana uygun) */
    
    /* !!! KÜÇÜLTME BURADA !!! */
    padding: 15px 0;    /* 20px'den 15px'e düşürüldü */
    margin-top: 25px;   /* 40px'den 25px'e düşürüldü */
    
    text-align: center;
    flex-shrink: 0; /* Bu, footer'ı altta tutar */
}

.footer .social-links a {
    color: #f0f0f0; /* Discord linki parlak kalsın */
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9em; /* Linki de biraz küçülttük */
    transition: color 0.3s ease;
}
.footer .social-links a:hover {
    color: var(--main-theme-color); /* Hover'da tema rengi */
}

/* Sayfa Geçiş Animasyonu */
@keyframes fadeInContent { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Müzik Oynatıcı Stilleri */
#music-player-container { position: fixed; bottom: 25px; left: 25px; z-index: 1001; display: flex; align-items: center; background-color: rgba(30, 30, 30, 0.8); padding: 8px 15px; border-radius: 50px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); transition: all 0.3s ease; }
.music-player-btn { background-color: #E30A17; color: #ffffff; border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 16px; line-height: 40px; text-align: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; flex-shrink: 0; margin-right: 12px; }
.music-player-btn:hover { transform: scale(1.1); }
#music-volume-slider { -webkit-appearance: none; appearance: none; width: 100px; height: 8px; background: #555; border-radius: 5px; outline: none; cursor: pointer; transition: all 0.2s ease; }
#music-volume-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; background: #E30A17; border-radius: 50%; cursor: pointer; border: 2px solid #fff; }
#music-volume-slider::-moz-range-thumb { width: 16px; height: 16px; background: #E30A17; border-radius: 50%; cursor: pointer; border: 2px solid #fff; }


/* ---------------------------------- */
/* ----- DÜZELTİLMİŞ MOBİL UYUM ----- */
/* ---------------------------------- */

/* Hamburger Menü İkonu (Başlangıçta gizli) */
.nav-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    user-select: none; /* Tıklamayı kolaylaştır */
}
.nav-toggle:hover {
    color: #E30A17;
}

/* Tablet ve Telefonlar (992px ve altı) */
@media (max-width: 992px) {
    .form-grid { 
        flex-wrap: wrap; 
        justify-content: space-between;
    }

    /* Hamburger ikonunu göster */
    .nav-toggle {
        display: block;
    }

    /* Menüleri gizle */
    .nav-menu,
    .nav-extra {
        display: none; 
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }
    .nav-extra {
        align-items: center;
        margin-top: 15px;
    }
    .discord-welcome {
        margin-bottom: 15px;
    }

    /* JS ile 'active' class'ı eklenince menüleri göster (dikey olarak) */
    .nav-menu.active,
    .nav-extra.active {
        display: flex;
    }
    
    .nav-toggle.active {
        color: #E30A17;
    }
    .nav-toggle.active::before {
        content: '\00d7'; /* 'X' işareti */
        font-size: 32px;
    }
    .nav-toggle:not(.active)::before {
        content: '\2630'; /* '☰' işareti */
    }

    /* Ana sayfa içeriğini ayarla */
    .container {
        width: 95%;
    }
    .content-box {
        padding: 20px;
    }
    body {
        padding-top: 70px;
    }

    /* Gridleri (Kadro, Galeri) tek sütuna düşür */
    .staff-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* !!! BUTON İÇ İÇE GİRME DÜZELTMESİ (GÜNCELLENDİ) !!! */
    /* Ana sayfadaki (hero) butonları alt alta diz */
    .hero-section .btn {
        display: block; /* Tam genişlik kapla */
        width: 80%; /* Çok geniş olmasın */
        margin: 15px auto !important; /* Ortala, aralarına boşluk koy ve !important ile ez */
    }
    .hero-section .btn-discord {
        margin-left: auto !important; /* 'margin-left: 10px' inline stilini EZ */
    }
    
    /* Müzik çaları sola yapıştır */
    #music-player-container {
        left: 10px;
        bottom: 10px;
        padding: 5px 10px;
    }
    .music-player-btn {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    #music-volume-slider {
        width: 80px;
    }
}
/* /css/style.css dosyasının EN ALTINA EKLE */

/* ---------------------------------- */
/* ----- MAĞAZA SİSTEMİ STİLLERİ ----- */
/* ---------------------------------- */

/* Kategori Filtreleme Menüsü */
.store-filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.store-filter-menu a {
    text-decoration: none;
    color: #f0f0f0;
    background: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}
/* Seçili olan kategori */
.store-filter-menu a.active,
.store-filter-menu a:hover {
    background: #E30A17; /* Kırmızı */
    color: #fff;
    box-shadow: 0 2px 10px rgba(227, 10, 23, 0.3);
}

/* Ürün Kartları Grid Sistemi */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Tek bir ürün kartı */
.store-card {
    background: #1f1f1f;
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden; /* Resmin taşmasını engelle */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #E30A17;
}

/* Ürün resmi alanı */
.store-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

/* Ürün içerik alanı */
.store-card-content {
    padding: 20px;
    flex-grow: 1; /* Kartların boyunu eşitler */
    display: flex;
    flex-direction: column;
}
.store-card-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3em;
}
.store-card-desc {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.5;
    flex-grow: 1; /* Açıklamayı aşağı iter */
    margin-bottom: 15px;
}

/* Kartın alt kısmı (Fiyat + Buton) */
.store-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Footer'ı en alta iter */
}
.store-card-price {
    font-size: 1.4em;
    font-weight: 700;
    color: #E30A17;
}

/* Satın Al Butonu */
.btn-buy {
    background: #E30A17;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.3s ease;
}
.btn-buy:hover {
    background: #b00812;
    transform: scale(1.05);
}

/* Mağaza Mobil Uyumu (style.css'teki @media bloğunun içine girebilir) */
@media (max-width: 992px) {
    .store-grid {
        /* Mobil için tek sütun (zaten yapmıştık ama garanti olsun) */
        grid-template-columns: 1fr;
    }
}
/* /css/style.css dosyasının EN ALTINA EKLE */

/* /css/style.css dosyasının EN ALTINA EKLE */





/* Sağ taraf (Buton) */
.btn-form-select {
    background: #E30A17;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center;
    flex-shrink: 0; /* Butonun küçülmesini engelle */
    margin-left: 20px; /* İçerikle arasına boşluk */
}
.btn-form-select:hover {
    background: #b00812;
    transform: scale(1.05);
}

/* Mobilde Başvuru Listesi (Alt alta) */
@media (max-width: 768px) {
    .form-card {
        flex-direction: column; /* Alt alta diz */
        align-items: stretch; /* Esnet */
        padding: 20px;
    }
    .form-card-content {
        margin-bottom: 20px; /* Butonla arasına boşluk */
    }
    .btn-form-select {
        margin-left: 0; /* Sol boşluğu sıfırla */
    }
}


/* ---------------------------------- */
/* ----- PROFİL SAYFASI STİLLERİ (profile.php) ----- */
/* ---------------------------------- */
.profile-applications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #ccc;
}
.profile-applications-table th, 
.profile-applications-table td {
    padding: 12px 15px;
    border: 1px solid #3a3a5a;
    text-align: left;
}
.profile-applications-table th {
    background: #1e1e3f;
    font-weight: 700;
    color: white;
}
.profile-applications-table tbody tr:nth-child(even) {
    background: #1f1f1f;
}

/* Durum Etiketi */
.status-badge {
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
}
/* ---------------------------------- */
/* ----- BAŞVURU KARTLARI (SÜTUNLU GÖRÜNÜM) ----- */
/* ---------------------------------- */
.form-grid {
    display: grid;
    /* İstediğin "ayrı kare kutular" (sütunlu) görünümü */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px;
    margin-top: 20px;
}

.form-card {
    background: #1f1f1f;
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden; 
    display: flex;
    flex-direction: column; /* İçerik alt alta */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #E30A17;
}

.form-card-content {
    padding: 25px;
    flex-grow: 1; /* Bu, içeriğin tüm kartı doldurmasını sağlar */
    display: flex;
    flex-direction: column;
}
.form-card-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3em;
}
.form-card-desc {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 20px;
    /* Açıklama ne kadar uzun olursa olsun, buton hep altta kalır */
    flex-grow: 1; 
}

.btn-form-select {
    background: #E30A17;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto; /* Butonu kartın en altına iter */
}
.btn-form-select:hover {
    background: #b00812;
    transform: scale(1.05);
}
/* /css/style.css dosyasının EN ALTINA EKLE */

/* ---------------------------------- */
/* ----- YENİ PROFİL AÇILIR MENÜSÜ ----- */
/* ---------------------------------- */
.profile-dropdown {
    position: relative; /* Menüyü buna göre konumlandır */
}
.profile-avatar-toggle {
    width: 40px; /* PP Boyutu */
    height: 40px;
    border-radius: 50%; /* Tam Yuvarlak */
    cursor: pointer;
    border: 2px solid #555; /* Hafif çerçeve */
    transition: all 0.3s ease;
}
.profile-avatar-toggle:hover {
    border-color: #E30A17; /* Hover'da kırmızı çerçeve */
    transform: scale(1.1);
}
.profile-menu {
    display: none; /* Başlangıçta gizli */
    position: absolute;
    top: 55px; /* İkonun 55px altına */
    right: 0; /* Sağa hizalı */
    width: 220px;
    background-color: #2a2a4a; /* Admin paneli rengi */
    border-radius: 8px;
    border: 1px solid #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1002;
    overflow: hidden; /* Köşeler için */
    animation: fadeInMenu 0.2s ease-out; /* Hafif animasyon */
}
/* JS ile 'active' class'ı eklenince göster */
.profile-menu.active {
    display: block;
}
.profile-menu-header {
    padding: 15px;
    font-size: 0.9em;
    color: #ccc;
    background-color: #1e1e3f; /* Admin panelinin koyu rengi */
}
.profile-menu-header strong {
    color: white;
}
.profile-menu-item {
    display: block;
    padding: 12px 15px;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.95em;
    transition: background-color 0.2s ease;
}
.profile-menu-item:hover {
    background-color: #3a3a5a; /* Hover rengi */
}
.profile-menu-item.admin-link {
    color: #E30A17; /* Admin Paneli linki kırmızı */
    font-weight: bold;
}
.profile-menu-item.logout-link:hover {
    background-color: #8b0000; /* Çıkış yap hover'ı */
    color: white;
}
.profile-menu-separator {
    height: 1px;
    background-color: #444;
    margin: 5px 0;
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------- */
/* ----- PROFİL MENÜSÜ (MOBİL UYUM) ----- */
/* ---------------------------------- */
/* @media bloğunu bulup içine eklemen GEREKİR */
/* AMA en alta eklersen de çalışır */
@media (max-width: 992px) {
    /* Mobil için profil menüsü */
    .profile-menu {
        width: calc(100% - 20px);
        left: 10px;
        top: 60px;
    }
    .nav-extra .profile-dropdown {
        display: flex;
        justify-content: center; /* İkonu ortala */
        width: 100%;
        margin-bottom: 15px;
    }
}
/* ... (diğer profil menüsü stilleri) ... */

.profile-menu-item.admin-link {
    color: #E30A17; /* Admin Paneli linki kırmızı */
    font-weight: bold;
}
/* ----- KAR YAĞIŞI TEMASI ----- */
/* ---------------------------------- */
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Her şeyin üstünde, ama tıklamaları engellemesin */
    z-index: 1001; /* Navbar'dan (1000) yüksek, Modal'dan (1005) düşük */
    pointer-events: none;
}