/* Adım 1'den 6'ya Tüm CSS Stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    /* Evrenin soğuk, monospaced yapısına uygun bir font */
    font-family: 'Space Mono', 'Courier New', Courier, monospace; 
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    touch-action: none;
    overscroll-behavior: none;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; 
    touch-action: none;
    overscroll-behavior: none;
}

/* Glassmorphism Menü */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 40px 20px 40px;
    background: rgba(5, 5, 5, 0.4); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; 
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    
    /* Metni kaplamayan, sadece üzerinde gezen ekstra yumuşak "Gökkuşağı Yansıması" efekti ve Sabit Gradient Zemin */
    background: 
        linear-gradient(110deg, 
            transparent 0%, 
            transparent 10%, 
            rgba(66, 133, 244, 0.15) 30%,    /* Google Mavi */
            rgba(234, 67, 53, 0.15) 45%,     /* Google Kırmızı */
            rgba(251, 188, 5, 0.15) 55%,     /* Google Sarı */
            rgba(52, 168, 83, 0.15) 70%,     /* Google Yeşil */
            transparent 90%, 
            transparent 100%
        ),
        linear-gradient(to right, #7a7a7a, #aaaaaa);
    background-size: 600px 100%, 100% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rainbow-flow 60s linear infinite;
}

@keyframes rainbow-flow {
    0% { background-position: -500px 0, 0 0; }
    20% { background-position: 0px 0, 0 0; }
    100% { background-position: 0px 0, 0 0; }
}

.logo .logo-beta {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to right, #7a7a7a, #aaaaaa);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50%;
    opacity: 0.8;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-earth {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    white-space: nowrap;
    animation: fold-earth 60s ease-in-out infinite, rainbow-flow 60s linear infinite;
    
    /* Gökkuşağı animasyonunun devamı için kendi kopyası ve Sabit Gradient Zemin */
    background: 
        linear-gradient(110deg, 
            transparent 0%, 
            transparent 10%, 
            rgba(66, 133, 244, 0.15) 30%,    
            rgba(234, 67, 53, 0.15) 45%,  
            rgba(251, 188, 5, 0.15) 55%,    
            rgba(52, 168, 83, 0.15) 70%,  
            transparent 90%, 
            transparent 100%
        ),
        linear-gradient(to right, #7a7a7a, #aaaaaa);
    background-size: 600px 100%, 100% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes fold-earth {
    0%, 92% { max-width: 150px; opacity: 1; transform: translateX(0); margin-left: 0; }
    94%, 98% { max-width: 0px; opacity: 0; transform: translateX(-15px); margin-left: -5px; }
    100% { max-width: 150px; opacity: 1; transform: translateX(0); margin-left: 0; }
}
.menu-items {
    display: flex;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 2px;
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.center-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10; 
    pointer-events: none; 
}

.join-btn {
    pointer-events: auto; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Premium reflection */
    padding: 16px 45px;
    font-family: inherit;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-radius: 50px; /* Modern pill shape */
}

.join-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Glassmorphism Modallar */
.modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 20; 
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content {
    background: rgba(15, 15, 18, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Hafif ışık yansıması */
    padding: 35px 40px;
    width: 550px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 20px; /* Modern yuvarlak köşeler */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    color: #ffd700;
}

.modal-content h2 {
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.modal-content p#modal-subtitle {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

/* Profil Kartı Özel Tipografi */
.profile-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.profile-meta {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* SİYAH KÜP (33 Satır Alanı) */
#signature-text {
    width: 100%;
    min-height: 80px;
    height: auto;
    max-height: 280px; /* Sınır koyduk, böylece aşınca kaydırma çubuğu çıkar */
    overflow-y: auto; /* hidden yerine auto yaptık */
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    background-color: #030303;
    color: #e0e0e0;
    border: 1px solid #222;
    padding: 14px;
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    resize: none;
    outline: none;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#signature-text:focus {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 0 15px rgba(255, 255, 255, 0.02);
}

#signature-text:read-only {
    background-color: rgba(5, 5, 5, 0.8);
    border-color: #111;
    color: #888;
    cursor: default;
}

#signature-text::-webkit-scrollbar {
    width: 4px;
}
#signature-text::-webkit-scrollbar-track {
    background: #000;
}
#signature-text::-webkit-scrollbar-thumb {
    background: #333;
}

.signature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.line-count {
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    font-family: inherit;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px; /* Modern rounded corners */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.action-btn-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}

.action-btn-mini:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.action-btn-mini .material-symbols-outlined {
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.action-btn-mini:hover .material-symbols-outlined {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* Liderlik ve Yıldız Tozu */
.leaderboard-container {
    max-height: 350px;
    overflow-y: auto;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.leaderboard-container::-webkit-scrollbar {
    width: 4px;
}
.leaderboard-container::-webkit-scrollbar-track {
    background: transparent;
}
.leaderboard-container::-webkit-scrollbar-thumb {
    background: #444;
}

#leaderboard-list {
    list-style: none;
    padding: 0;
}

#leaderboard-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #bbb;
    transition: background 0.3s;
}

#leaderboard-list li:hover {
    background: rgba(255, 255, 255, 0.02);
}

#leaderboard-list li:last-child {
    border-bottom: none;
}

/* Evrenin Bekçileri: İlk 3 Kişi */
.top-tier {
    color: #ffd700 !important;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.user-rank-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    text-align: center;
    letter-spacing: 1px;
}

/* Yıldız Tozu modalı — PC'de daha kompakt */
@media (min-width: 769px) {
    #modal-stardust .modal-content {
        width: 460px;
        max-width: 92vw;
        min-height: 520px;
        max-height: 88vh;
        overflow-y: auto;
        padding: 22px 26px;
    }

    #modal-stardust .modal-content h2 {
        font-size: 18px;
        margin-bottom: 8px;
        padding-bottom: 10px;
    }

    #modal-stardust .modal-content p#modal-subtitle {
        margin-bottom: 12px;
    }

    #modal-stardust .leaderboard-container {
        max-height: 300px;
        margin-top: 10px;
        padding: 4px 0;
    }

    #modal-stardust #leaderboard-list li {
        padding: 7px 8px;
        font-size: 13px;
    }

    #modal-stardust #stardust-stats-container {
        padding: 10px 14px !important;
    }

    #modal-stardust #my-rank,
    #modal-stardust #my-stardust {
        font-size: 15px !important;
    }

    #modal-stardust #input-donate-amount,
    #modal-stardust .stardust-custom-input {
        padding: 10px 12px 10px 40px !important;
        font-size: 14px !important;
    }

    #modal-stardust #btn-donate-custom,
    #modal-stardust .stardust-custom-btn {
        padding: 10px 20px !important;
        font-size: 13px;
    }

    /* Hakkında modalı — PC'de kompakt */
    #modal-lore .lore-modal-content {
        width: 460px;
        max-width: 92vw;
        max-height: 78vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 20px 24px;
    }

    #modal-lore .lore-modal-content > div:first-child {
        top: 12px !important;
        right: 14px !important;
    }

    #modal-lore .lore-modal-content > div:nth-child(2) {
        margin-bottom: 6px !important;
    }

    #modal-lore .lore-modal-content > div:first-child .close-btn {
        width: 28px;
        height: 28px;
    }

    #modal-lore .lore-modal-content > div:first-child .material-symbols-outlined {
        font-size: 18px !important;
    }

    #modal-lore .lore-modal-content h2 {
        font-size: 17px !important;
        letter-spacing: 1px;
    }

    #modal-lore .lore-text {
        max-height: calc(78vh - 68px);
        flex: 1;
        min-height: 0;
        padding-right: 8px;
    }

    /* Profil / Giriş Protokolü — PC'de kompakt */
    #modal-profile .modal-content {
        width: 530px;
        max-width: 92vw;
        max-height: 78vh;
        overflow-y: auto;
        padding: 22px 26px;
    }

    #modal-profile .modal-content > div:first-child .close-btn {
        width: 28px;
        height: 28px;
    }

    #profile-login-section {
        padding: 6px 0 2px !important;
    }

    #profile-login-section h2 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
        padding-bottom: 0 !important;
        letter-spacing: 1px;
    }

    #profile-login-section p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    #profile-login-section .join-btn {
        padding: 11px 26px;
        font-size: 13px;
        letter-spacing: 2px;
    }
}

/* Lore Text (Künye) */
#modal-lore {
    z-index: 100; /* Evrendeki en yüksek katman */
}

.lore-modal-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 550px; /* Standart modal genişliği ile eşitlendi, böylece boyu daha uzun gözükecek */
}

.lore-text {
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 15px;
    font-family: 'Courier Prime', 'Courier New', Courier, monospace; /* Daktilo fontu */
}

.lore-text::-webkit-scrollbar {
    width: 5px; /* Sadece 5 piksel genişliğinde kozmik kaydırma */
}
.lore-text::-webkit-scrollbar-track {
    background: transparent;
}
.lore-text::-webkit-scrollbar-thumb {
    background: #666; /* mat gri, --text-dim */
    border-radius: 0; /* Köşeli, sert uzay estetiği */
}

.lore-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: 'Space Mono', 'Courier New', Courier, monospace; /* Roma rakamları otoriter bir font ile */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.lore-text p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.lore-text strong {
    color: #fff;
    font-weight: bold;
}

/* Kozalak ve Siyah Küp Tablosu */
.symbol-table {
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.symbol-row {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-family: 'Courier Prime', monospace;
}

.symbol-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.symbol-name {
    flex: 0 0 160px;
    font-weight: bold;
    color: #ffd700; /* Altın sarısı, değerli bilgiyi simgeler */
    font-size: 14px;
}

.symbol-desc {
    flex: 1;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

/* Kozmik Tarayıcı (Arama Barı) */
.search-container {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%; /* Ortalamak için */
    transform: translate(-50%, -10px);
    width: 280px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.search-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

#search-input {
    width: 100%;
    padding: 8px 20px;
    background: rgba(45, 45, 55, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    color: #fff;
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    font-size: 14px;
    outline: none;
    border-radius: 25px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: background 0.3s ease;
    white-space: nowrap;
}

#search-input:focus {
    background: rgba(55, 55, 65, 0.95); /* Daha açık arka plan */
    border: none; /* Odaklanınca çıkan sarı çizgi kaldırıldı */
}

#search-results {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 100%;
    list-style: none;
    background: rgba(45, 45, 50, 0.85); /* Daha açık arka plan */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);

    margin-top: -2px;
    padding: 0;
}

#search-results:empty {
    display: none; /* İçinde sonuç yokken (boşken) tamamen gizle, böylece çizgi kalıntısı oluşmaz */
}

#search-results::-webkit-scrollbar {
    width: 3px;
}
#search-results::-webkit-scrollbar-thumb {
    background: #666;
}

#search-results li {
    padding: 8px 15px; /* Kişiler daha küçük, boşluk az */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    color: #bbb;
    font-size: 11px; /* Daha küçük font */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s, color 0.3s;
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
}

#search-results li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

#search-results li:last-child {
    border-bottom: none;
}

/* --- GOOGLE EARTH STİLİ NAVİGASYON PANELİ --- */
#navigation-panel {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row; /* Joystikleri sola, zoomu sağa dizer */
    align-items: flex-end; /* Alt kenardan hizala */
    gap: 15px;
    z-index: 10;
    touch-action: none;
}

#joystick-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.joystick-base {
    position: relative;
    width: 85px;
    height: 85px;
    background: rgba(15, 15, 18, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.joystick-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 60%; height: 60%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.joystick-stick {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    cursor: grab;
    transition: transform 0.15s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.joystick-stick:active {
    cursor: grabbing;
    transition: none;
}

.stick-icon {
    font-size: 24px !important;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.joy-arrow {
    position: absolute;
    width: 0; 
    height: 0; 
    pointer-events: none;
    border-style: solid;
    opacity: 0.3;
}
.j-up { top: 4px; left: 50%; transform: translateX(-50%); border-width: 0 4px 6px 4px; border-color: transparent transparent #fff transparent; }
.j-down { bottom: 4px; left: 50%; transform: translateX(-50%); border-width: 6px 4px 0 4px; border-color: #fff transparent transparent transparent; }
.j-left { left: 4px; top: 50%; transform: translateY(-50%); border-width: 4px 6px 4px 0; border-color: transparent #fff transparent transparent; }
.j-right { right: 4px; top: 50%; transform: translateY(-50%); border-width: 4px 0 4px 6px; border-color: transparent transparent transparent #fff; }

/* Yakınlaştırma / Uzaklaştırma (Zoom) */
#zoom-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 15, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    height: 139px; /* Symmetrical with joysticks */
}

.zoom-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    padding: 2px;
}
.zoom-btn:hover {
    opacity: 1;
    color: #ffd700;
}
.zoom-btn .material-symbols-outlined {
    font-size: 20px !important;
}

.zoom-track {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
    border-radius: 1px;
    position: relative;
    display: flex;
    justify-content: center;
}

.zoom-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8), inset 0 1px 3px rgba(255, 255, 255, 0.5);
    cursor: grab;
    z-index: 2;
    transition: transform 0.15s ease-out;
}

.zoom-knob:active {
    cursor: grabbing;
    transition: none;
}

/* --- Mobil Uyumluluk (Responsive Design) --- */
@media (max-width: 768px) {
    .top-nav {
        padding: calc(15px + env(safe-area-inset-top, 0px)) 20px 15px 20px;
    }
    .logo {
        font-size: 18px;
        letter-spacing: 3px;
    }
    .nav-btn {
        margin-left: 15px;
    }
    .nav-btn .material-symbols-outlined {
        font-size: 22px !important;
    }
    /* Tablet için özel search-container override'ı iptal edildi, masaüstü slide efekti kullanılacak */
    .modal-content {
        padding: 18px 16px;
        width: 92%;
        max-width: 420px;
        max-height: 75vh;
    }
}

@media (max-width: 500px) {
    .top-nav {
        padding: calc(10px + env(safe-area-inset-top, 0px)) 15px 10px 15px;
        flex-direction: row;
        justify-content: space-between;
        background: rgba(5, 5, 5, 0.7);
    }
    .logo {
        font-size: 16px;
        letter-spacing: 2px;
        text-align: left;
    }
    .menu-items {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }
    .nav-btn {
        margin-left: 0;
        margin-right: 0;
    }
    .nav-btn .material-symbols-outlined {
        font-size: 20px !important;
    }
    /* Mobilde arama çubuğunu ekrandan taşmaması için ayarlıyoruz */
    .search-container {
        width: 250px;
        left: 50%;
        transform: translate(-50%, -10px);
    }
    .search-container.active {
        transform: translate(-50%, 0);
    }
    #search-input {
        padding: 4px 15px; /* Mobilde daha da ince (zarif) görünüm */
        font-size: 16px; /* Mobilde klavye açılınca zoom yapmasını önler */
    }
    #search-results li {
        padding: 8px 12px; /* Mobilde kişiler daha küçük */
        font-size: 11px;
    }

    /* Profil Resmi Açılır Menüsü */
    #profile-pic-menu {
        width: 130px !important;
        left: 50% !important;
        margin-left: -65px !important; /* transform animasyonunu bozmamak için margin kullanıyoruz */
    }
    #profile-pic-menu button {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .modal-content {
        padding: 14px 12px;
        width: 92%;
        max-width: 400px;
        border-radius: 12px;
        max-height: 72vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .close-btn {
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
        font-size: 14px;
        z-index: 50;
    }
    .modal-content h2 {
        font-size: 15px;
        margin-bottom: 6px;
        padding-bottom: 6px;
    }
    .modal-content p#modal-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }

    /* Hakkında — mobilde kompakt */
    #modal-lore .modal-content {
        height: auto;
        max-height: 72vh;
        padding: 12px 10px;
        display: flex;
        flex-direction: column;
    }
    #modal-lore .lore-text {
        height: auto !important;
        max-height: calc(72vh - 52px) !important;
        overflow-y: auto !important;
        overflow-x: hidden;
        padding-right: 4px;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        min-height: 0;
    }

    /* Profil / Giriş Protokolü — mobilde kompakt */
    #modal-profile .modal-content {
        max-height: 72vh;
    }
    #profile-login-section {
        padding: 2px 0 0 !important;
    }
    #profile-login-section h2 {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }
    #profile-login-section p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 14px !important;
    }
    #profile-login-section .join-btn {
        padding: 9px 20px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* Yıldız Tozu — mobilde kompakt */
    #modal-stardust .modal-content {
        min-height: 440px;
        max-height: 86vh;
    }

    /* Ödeme modalı */
    #modal-payment .modal-content {
        max-width: 340px;
        padding: 14px 12px;
    }

    .join-btn {
        padding: 9px 22px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    #profile-actions-toolbar {
        gap: 6px !important;
        margin-top: 10px !important;
    }
    .action-btn-mini .material-symbols-outlined {
        padding: 5px;
        font-size: 14px;
    }

    .action-btn {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    .profile-header h2 {
        font-size: 15px !important;
    }
    .profile-meta {
        font-size: 11px;
    }
    
    #signature-text {
        font-size: 11px;
        padding: 8px;
        line-height: 1.5;
        max-height: 200px;
    }
    .line-count {
        font-size: 10px;
    }

    /* Renk Düzenleme Alanı */
    #edit-colors-area > div {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }
    #btn-save-colors {
        width: 100%;
        height: 32px !important;
        margin-top: 5px !important;
        padding: 0 15px !important;
    }

    /* Liderlik ve Yıldız Tozu Modal */
    #my-rank, #my-stardust {
        font-size: 13px !important;
    }
    .leaderboard-container {
        max-height: 220px;
        margin-top: 8px;
        padding: 2px 0;
    }
    #leaderboard-list li {
        padding: 6px 4px;
        font-size: 10px;
    }
    
    #stardust-stats-container {
        padding: 10px 12px !important;
    }
    #modal-stardust .stardust-footer > div:last-child {
        flex-direction: column;
        margin-top: 8px !important;
        gap: 8px !important;
    }

    #profile-header-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
    }
    
    #stardust-stats-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    #input-donate-amount,
    .stardust-custom-input {
        font-size: 13px !important;
        padding: 10px 8px 10px 36px !important;
    }
    #btn-donate-custom,
    .stardust-custom-btn {
        width: 100%;
        padding: 10px !important;
        font-size: 11px !important;
    }
    
    #btn-confirm-purchase {
        padding: 9px !important;
        font-size: 12px !important;
    }

    .symbol-row {
        flex-direction: column;
        gap: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .symbol-name {
        flex: none;
        font-size: 14px;
        text-align: center;
        border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .symbol-desc {
        text-align: justify;
    }

    /* Navigasyon Paneli Mobil Düzeni */
    #navigation-panel {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    #joystick-group {
        gap: 10px;
    }
    .joystick-base {
        width: 70px;
        height: 70px;
    }
    .joystick-stick {
        width: 30px;
        height: 30px;
    }
    .stick-icon {
        font-size: 20px !important;
    }
    #zoom-control {
        height: 104px; /* Symmetrical with mobile joysticks */
    }
}

/* --- DİL SEÇİCİ --- */
.lang-picker {
    position: relative;
    display: inline-block;
}
.lang-toggle-btn {
    padding: 0;
    line-height: 0;
}
.lang-toggle-flag {
    display: block;
    width: 26px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lang-toggle-btn:hover .lang-toggle-flag {
    transform: scale(1.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 10px rgba(255, 255, 255, 0.15);
}
.lang-option-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Profil fotoğrafı ülke bayrağı */
.profile-flag-badge {
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-sizing: content-box;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 10002;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
}
.lang-menu.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    cursor: pointer;
    text-align: left;
}
.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
}
.lang-option.active {
    background: rgba(0, 229, 255, 0.12);
    color: #00e5ff;
}
html[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}
html[dir="rtl"] .top-nav .menu-items {
    direction: rtl;
}

.stardust-shop-section {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.stardust-custom-section {
    margin-top: 0;
}

.stardust-tabs {
    margin-top: 15px;
}

.stardust-main-tabs {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.stardust-main-tab-bar {
    margin-bottom: 14px;
}

.stardust-list-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 380px;
    flex: 1;
}

.stardust-list-panel .leaderboard-container {
    flex: 1;
    min-height: 260px;
    max-height: 440px;
    margin-bottom: 0;
}

.stardust-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.stardust-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stardust-stat-label {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.5px;
}

.stardust-stat-value {
    font-size: 18px;
    color: #fff;
    font-family: 'Space Mono', monospace;
}

.stardust-stat-dust {
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stardust-stat-dust .material-symbols-outlined {
    font-size: 16px;
}

.stardust-shop-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-height: 340px;
}

.stardust-packs-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.stardust-info-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    flex: 1 0 auto;
    min-height: min-content;
}

.stardust-info-title {
    font-size: 14px;
    color: #ffd700;
    margin: 0 0 18px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    line-height: 1.45;
}

#modal-stardust #stardust-tab-info .stardust-privileges-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #ddd;
}

#modal-stardust #stardust-tab-info .stardust-privilege-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#modal-stardust #stardust-tab-info .stardust-privilege-item:first-child {
    padding-top: 0;
}

#modal-stardust #stardust-tab-info .stardust-privilege-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#modal-stardust #stardust-tab-info .stardust-privilege-item strong {
    display: block;
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

#modal-stardust #stardust-tab-info .stardust-privilege-text {
    margin: 0;
}

#modal-stardust #stardust-tab-info .stardust-privilege-text strong {
    display: block;
    margin-bottom: 6px;
}

.stardust-evolution-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.stardust-evolution-tier {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--tier-color, #ccc);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid color-mix(in srgb, var(--tier-color, #ccc) 35%, transparent);
    white-space: nowrap;
}

#modal-stardust #stardust-tab-info {
    overflow-y: auto;
}

@media (max-width: 768px) {
    #modal-stardust #stardust-tab-info .stardust-info-title {
        font-size: 13px;
    }

    #modal-stardust #stardust-tab-info .stardust-privileges-list {
        font-size: 11px;
        line-height: 1.6;
    }

    #modal-stardust #stardust-tab-info .stardust-privilege-item strong {
        font-size: 11px;
    }

    .stardust-evolution-tier {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.stardust-tab-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.stardust-tab {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.stardust-tab:hover {
    color: #ccc;
    background: rgba(255, 215, 0, 0.06);
}

.stardust-tab.active {
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.25);
}

.stardust-tab-panel {
    display: none;
}

.stardust-tab-panel.active {
    display: block;
}

.stardust-tab-panel.stardust-main-tab-panel.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 380px;
}

.stardust-packs-subtitle {
    font-size: 11px;
    color: #888;
    margin: 0 0 10px;
    letter-spacing: 0.4px;
    text-align: center;
}

.stardust-custom-title {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.stardust-custom-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stardust-custom-input-wrap {
    position: relative;
    width: 100%;
}

.stardust-custom-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 18px;
    pointer-events: none;
}

.stardust-custom-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px 12px 40px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffd700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    outline: none;
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    font-weight: bold;
}

.stardust-custom-btn {
    width: 100%;
    border-color: #ffd700;
    color: #ffd700;
    white-space: nowrap;
    margin: 0;
    padding: 12px 20px;
}

.stardust-custom-price {
    font-size: 11px;
    color: #4CAF50;
    margin: 8px 0 0;
    min-height: 16px;
}

.stardust-packs-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 10px;
    color: #ccc;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.stardust-packs-toggle:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.32);
    color: #ffd700;
}

.stardust-packs-toggle-label {
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
}

.stardust-privileges-icon {
    font-size: 16px;
    color: #ffd700;
    flex-shrink: 0;
}

.stardust-packs-chevron {
    font-size: 20px;
    color: #888;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s;
}

.stardust-collapsible-section.is-open .stardust-packs-chevron {
    transform: rotate(180deg);
    color: #ffd700;
}

.stardust-packs-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
    margin-top: 0;
}

.stardust-collapsible-section.is-open .stardust-packs-body {
    max-height: 780px;
    opacity: 1;
    margin-top: 12px;
}

.stardust-privileges-section {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

.stardust-privileges-toggle {
    background: transparent;
    border: none;
    padding: 0;
    color: #ffd700;
    font-weight: 500;
}

.stardust-privileges-toggle:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: transparent;
}

.stardust-privileges-body {
    max-height: 0;
}

.stardust-collapsible-section.is-open .stardust-privileges-body {
    max-height: 280px;
}

.stardust-privileges-list {
    font-size: 12px;
    color: #ccc;
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
}

.stardust-shop-hint {
    font-size: 11px;
    color: #888;
    margin: 10px 0 0;
    line-height: 1.4;
}

.stardust-shop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.stardust-pack-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px 12px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    color: #ffd700;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.stardust-pack-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 9px;
    font-weight: bold;
    color: #000;
    background: #4CAF50;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.stardust-pack-tier {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.stardust-pack-hint {
    font-size: 9px;
    color: #888;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    padding: 0 4px;
    font-family: 'Montserrat', sans-serif;
}

.stardust-pack-price-old {
    font-size: 10px;
    color: #666;
    text-decoration: line-through;
}

.stardust-pack-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.45);
    transform: translateY(-1px);
}

.stardust-pack-dust {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: bold;
}

.stardust-pack-dust .material-symbols-outlined {
    font-size: 16px;
}

.stardust-pack-price {
    font-size: 12px;
    color: #4CAF50;
}

@media (max-width: 500px) {
    .stardust-shop {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .stardust-pack-btn {
        padding: 10px 8px;
    }
}

/* Yldz Tozu Modal ten Kaydrma Ayarlar */
#modal-stardust .modal-content {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

#modal-stardust .stardust-main-tabs {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

#modal-stardust .stardust-main-tab-panel.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 5px; /* Scrollbar iin biraz boluk */
}

/* Satn alma listesinin alt ksmnda boluk brakalm ki en alttaki paket tam grnsn */
.stardust-shop-panel {
    padding-bottom: 20px;
}


/* Yldz Tozu Modal - Modaln ar uzamasn nlemek iin sabit ykseklik (lk 4 paketi gsterecek ekilde) */
@media (min-width: 769px) {
    #modal-stardust .modal-content {
        height: 650px !important;
        max-height: 95vh !important;
        min-height: unset !important;
    }
}

@media (max-width: 768px) {
    #modal-stardust .modal-content {
        height: 600px !important;
        max-height: 95vh !important;
        min-height: unset !important;
    }
}


/* Liderlik listesinin, artan pencere yksekliini doldurmas iin max-height snrlamalarn iptal et */
#modal-stardust .stardust-list-panel .leaderboard-container,
#modal-stardust .leaderboard-container {
    max-height: none !important;
    flex: 1;
}


/* Satn Al ve Bilgi sekmelerindeki kaydrma ubuunu (scrollbar) Liste sekmesiyle ayn (karanlk/nce) yap */
#modal-stardust .stardust-main-tab-panel.active::-webkit-scrollbar,
#modal-stardust .stardust-main-tab-panel::-webkit-scrollbar {
    width: 4px;
}
#modal-stardust .stardust-main-tab-panel.active::-webkit-scrollbar-track,
#modal-stardust .stardust-main-tab-panel::-webkit-scrollbar-track {
    background: transparent;
}
#modal-stardust .stardust-main-tab-panel.active::-webkit-scrollbar-thumb,
#modal-stardust .stardust-main-tab-panel::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}


/* Yasal ve Knye Blmndeki i kaydrma ubuklarnn stilini dzenle */
#modal-lore .lore-card::-webkit-scrollbar {
    width: 4px;
}
#modal-lore .lore-card::-webkit-scrollbar-track {
    background: transparent;
}
#modal-lore .lore-card::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
