/* ============================================================
   | Dismox CODER - ErenESER				      |
   ============================================================ */


@media (max-width: 768px) {
    /* Sayfa Kaymasını Engelle */
    body { overflow: hidden; height: 100vh; position: fixed; width: 100%; }

    /* Header'ı Koru ve Sabitle */
    .header-modern {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0 !important;
        padding: 10px !important;
    }
    .header-container { border-radius: 0 0 20px 20px !important; }
    
    /* Menü Tetikleyici Buton Stili */
    .mobile-menu-trigger {

        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 18px;
    }

    /* SOL PANELİ (Sunucu ve Odaları) MODAL YAP */
    .dc-servers, .dc-rooms {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Odalar Panelini Yan Menüye Çevir */
    .dc-rooms {
        position: fixed;
        left: -100%; /* Başlangıçta gizli */
        top: 0;
        bottom: 70px; /* Sunucu barının üstünde bitsin */
        width: 280px;
        z-index: 2000;
        background: #111 !important;
        box-shadow: 20px 0 50px rgba(0,0,0,0.5);
        border-radius: 0 20px 20px 0 !important;
        padding-top: 80px !important; /* Header'dan kurtar */
    }

    /* Menü Açıldığında */
    body.menu-open .dc-rooms {
        left: 0;
    }

    .dc-server {
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
    }

    /* CHAT ALANINI FULL EKRAN YAP */
    .dc-wrap {
        display: block !important;
        padding-top: 85px !important; /* Header yüksekliği */
        height: 100vh !important;
    }

    .dc-chat {
        height: calc(100vh - 155px) !important; /* Header ve Bottom barı çıkar */
        border-radius: 0 !important;
    }

    /* Karartma Overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(4px);
        z-index: 1999;
        display: none;
    }
    body.menu-open .menu-overlay { display: block; }
}

/* Masaüstünde Butonu Gizle */
@media (min-width: 769px) {
    .mobile-menu-trigger { display: none; }
}

.chat-wrapper{
    width:100%;
    height:700px;
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border-radius:10px;
    border:1px solid #ffffff;
    overflow:hidden;
}

.chat-blur-area{
    flex:1;
    display:flex;
    flex-direction:column;
    min-height:0; /* ÇOK ÖNEMLİ (scroll fix) */
}

/* MESAJ ALANI */
.chat-messages{
    flex:1;
    padding:14px;
    overflow-y:auto;
}
.chat-messages::-webkit-scrollbar{width:0}

/* CHAT SATIRI */
.chat-line{
    display:flex;
    gap:9px;
    padding:10px 8px;
    border-radius:12px;
    transition:.25s;
    position:relative;
}

/* BODY */
.chat-body{
    flex:1;
    display:flex;
    flex-direction:column;
}

/* HEADER */
.chat-header-line{
    display:flex;
    align-items:center;
    gap:6px;
}
.chat-username{
    font-size:12px;
    font-weight:600;
}

/* ROZET */
.badge{
    font-size:10px;
    padding:2px 6px;
    border-radius:6px;
}
.badge.admin{
    background:#e96982;
    color:#fff;
    box-shadow:0 0 12px rgba(233,105,130,.6);
}

.badge.vip{
    position: relative;
    background: linear-gradient(104deg, #191919, #727272, #191919, #0a0a0a, #101010);
    background-size: 300% 300%;
    color: #fff;
    font-size:10px;
    padding:2px 6px;
    border-radius: 6px;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow:
        0 0 12px rgba(255,255,255,.12),
        inset 0 0 8px rgba(255,255,255,.08);
    animation: vipGradient 4s ease infinite;
    overflow: hidden;
}

.badge.vip::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background: linear-gradient(
        60deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transform: rotate(25deg);
    animation: vipShine 3s linear infinite;
}

@keyframes vipGradient{
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes vipShine{
    0%   { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.rank-icon img{height:14px}

.chat-avatar{
    width:30px;
    height:30px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.chat-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.avatar-text{
    width:100%;
    height:100%;
    background:#202020;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    border-radius:50%;
    letter-spacing:.5px;
    user-select:none;
}

.chat-text{
    margin-top:4px;
    font-size:11px;
    line-height:1.5;
    color:#737373;
}

.delete-btn{
    position:absolute;
    right:10px;
    top:10px;
    opacity:0;
    cursor:pointer;
    color:#ff4d4d;
    transition:.2s;
}
.chat-line:hover .delete-btn{opacity:1}

.chat-input{
    display:flex;
    gap:10px;
    padding:14px;
    background:#ffffff;
    border-top:1px solid #f2f2f2;
}
.chat-input input{
    flex:1;
    background:#f9f9f9;
    border:none;
    border-radius:10px;
    padding:12px;
    color:#363636;
    font-size:13px;
}
.chat-input button{
    background:#e96982;
    border:none;
    border-radius:10px;
    padding:0 22px;
    color:#fff;
    font-size:13px;
    cursor:pointer;
}
.chat-input button:hover{background:#c35369}

.chat-rooms{
    display:flex;
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #f2f2f2;
}

.room-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 33px;
    background:#ffffff;
    color:#939393;
    text-decoration:none;
    font-size:13px;
    white-space:nowrap;
    transition:.2s;
}

.room-btn.active{
    background:#e96982;
    color:#fff;
}

.room-content{
    display:flex;
    align-items:center;
}

.room-img{
    width:16px;
    height:16px;
    margin-right:10px;
}

.room-text{
    font-size:12px;
    font-weight:normal;
}

.chat-wrapper {
    position: relative;
}

.blurred {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.room-lock-screen {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #787878;
    text-align: center;
}

.room-lock-screen input {
    padding: 10px;
    font-size: 11px;
    border-radius: 2px;
    background-color: #f5f5f5;
    border: none;
    width: 240px;
    margin-top: 12px;
    outline: none;
}

.room-lock-screen button {
    margin-top: 12px;
    font-size: 12px;
    padding: 10px 27px;
    border-radius: 2px;
    background: #e96982;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.lock-error {
    margin-top: 10px;
    color: #ff6b6b;
    font-size: 12px;
}

.chat-blur-area[data-locked="1"] {
    visibility: hidden;
}

:root{
    --bg:#070707;
    --panel:#0c0c0c;
    --panel-2:#121212;
    --border:#1a1a1a;
    --text:#eaeaff;
    --muted:#8b8b8b;
    --primary:#5865f2;
    --radius:14px;
}
*{box-sizing:border-box;font-family:Inter,system-ui}
body{
    margin:0;
    background:#111111;
    color:#7e7e7e;
}

.header{
    max-width: 1300px;
    margin: 24px auto;
    padding: 16px 22px;
    background: rgb(29 29 29);
    backdrop-filter: blur(12px);
    border: 1px solid #2c2c2c;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a{
    color:#ffffff;
    margin:0 14px;
    text-decoration:none;
    font-size:12px;
    font-weight: 600;
}
.nav a.active,.nav a:hover{color:#f0f0f0}
.user{
    width: 35px;
    height: 35px;
    border-radius: 33%;
    background: linear-gradient(135deg, #2a2a2a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:12px;
}

.dc-wrap{
    max-width:1300px;
    margin:0 auto 40px;
    display:grid;
    grid-template-columns:72px 260px 1fr;
    gap:16px;
}


.dc-server{
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    color: #838383;
    text-decoration: none;
}
.dc-server:hover{
    transform:translateY(-2px);
    background:#222222;
    color:white;
}
.dc-server.active{
    background:#ba9cf8;
    box-shadow:0 0 0 2px rgb(122 122 122 / 20%);
    color:white;
}

.dc-rooms{
    background: #101010;
    border: 1px solid #232323;
    border-radius: 14px;
    padding: 14px;
}
.dc-rooms-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    margin-bottom:14px;
    color:#a058f2;
}
.add-room{
    width:28px;height:28px;
    border-radius:2px;
    background:#ba9cf8;
    border:none;
    color:#fff;
    cursor:pointer;
}

.room{
    display:block;
    position:relative;
    padding:10px 12px;
    margin-bottom:6px;
    border-radius:10px;
    font-size:13px;
    color:var(--muted);
    text-decoration:none;
    transition:.2s;
}
.room:hover{
    background:#202020;
    color:#fff;
    padding-left:18px;
}
.room.active{
    background: linear-gradient(90deg, rgb(88 88 88 / 65%), transparent);
    color: #fff;
}
.room.active::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 20px;
    background: #202020;
    border-radius: 1px;
}
.room .lock{
    float:right;
    opacity:.6;
}

.dc-chat{
    background: #111111;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    height: 68vh;
}
.dc-chat-header{
    padding:14px 3px;
    border-bottom:1px solid #1a1a1a85;
    font-weight:600;
    color:#dadada;
}
.dc-messages{
    flex:1;
    overflow:auto;
}
.msg{
    display:flex;
    gap:12px;
    margin-bottom:16px;
}
.avatar{
    width:38px;height:38px;
    border-radius:50%;
    background:linear-gradient(135deg, #ffffff, #ececec);
    display:flex;align-items:center;justify-content:center;
}
.bubble{
    background:linear-gradient(271deg, rgb(255 255 255 / 24%), #00000008);
    padding:12px 16px;
    border-radius:4px;
    max-width:65%;
}
.name{font-size:11px;font-weight:600}
.text{font-size:12px;margin-top:4px}
.time{font-size:11px;color:var(--muted);margin-top:4px}

.dc-input input {
    width: 100%;
    padding: 14px;
    background: #111111;
    border: 1px solid #1d1d1d;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 12px;
    outline: none; 
}

.dc-input input:focus,
.dc-input input:focus-visible {
    background: #111111;      
    border-color: #2b2b2b;    
    outline: none;
    box-shadow: none;          
}

.server-info-view{
    padding:10px;
}
.server-info-cover{
    height:160px;
    border-radius:12px;
    background-size:cover;
    background-position:center;
    margin-bottom:16px;
}
.server-info-title{
    font-size:20px;
    font-weight:700;
    color:#bebebe;
}
.server-info-meta{
    font-size:12px;
    margin:6px 0 12px;
    color:#777;
}
.server-info-desc{
    font-size:13px;
    line-height:1.6;
    color:#666;
}
.back-chat{
    margin-top:18px;
    padding:10px 18px;
    border:none;
    border-radius:6px;
    background:#292929;
    color:#fff;
    cursor:pointer;
}

.dc-server:hover{background:#484848;color:#fff}
.dc-server.active{
background: #1c1c1c;
    color: #fff;
}

.server-cover{
    height:120px;
    border-radius:12px;
    background-size:cover;
    background-position:center;
    margin-bottom:14px;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
.server-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.server-cover-text{
    position:absolute;
    bottom:12px;
    left:12px;
    z-index:2;
    color:#fff;
}
.server-cover-text h3{
    margin:0;font-size:15px;
}
.server-cover-text span{
    font-size:11px;opacity:.8;
}

.chat-line.admin-line{
    background: linear-gradient(271deg, rgb(17 17 17), #232323db);
    border-left:3px solid #ff819a;
    padding:10px;
}

.admin-message-title{
    font-size: 11px;
    color: #e96982;
    background: linear-gradient(91deg, rgb(42 42 42), #111111);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 7px;
    font-weight: 600;
}

.dc-chat{
    display:flex;
    flex-direction:column;
    height:68vh; 
}

#chatView{
    flex:1;
    min-height:0; 
}

.dc-messages{
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.15) transparent;
}

.dc-messages::-webkit-scrollbar{
    width:4px;
}

.dc-messages::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.25);
    border-radius:10px;
}

.dc-messages::-webkit-scrollbar-thumb:hover{
    background: rgba(0,0,0,.45);
}

.only-admin-info{
    text-align:center;
    padding:25px;
    color:#aaa;
    font-size:13px;
}
.only-admin-info i{
    font-size:28px;
    color:#e96982;
    margin-bottom:8px;
}

.login-success{
    display:none;
    text-align:center;
    padding:20px 0;
}

.success-icon{
    width:70px;
    height:70px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin:0 auto 15px;
    animation:pop .4s ease;
}

@keyframes pop{
    from{transform:scale(.6);opacity:0}
    to{transform:scale(1);opacity:1}
}

.login-success h3{
    font-size:14px;
    color:#bcbcbc;
}

.login-success p{
    font-size:12px;
    color:#555;
}

.login-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter: blur(9px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.login-modal{
    background:linear-gradient(138deg, rgb(18 15 24 / 64%), #161616);
    width:90%;
    max-width:600px;
    border-radius:18px;
    padding:40px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
    animation:modalIn .35s ease;
}

@keyframes modalIn{
    from{transform:translateY(30px) scale(.95);opacity:0}
    to{transform:translateY(0) scale(1);opacity:1}
}

.close-btn{
    position:absolute;
    right:14px;
    top:14px;
    background:#1c1c1c;
    border:none;
    width:32px;
    color:white;
    height:32px;
    border-radius:50%;
    cursor:pointer;
}

.modal-header{
    text-align:center;
    margin-bottom:20px;
}

.premium-icon{
    width: 160px;
    height: 45px;
    background: linear-gradient(90deg, #1c1a2221, #17141957);
    color: #5c5c5c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 auto 10px;
    font-size: 14px;
}

.modal-header h2{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

.modal-header p{
    font-size:11px;
    color:#777;
}

.login-form input{
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #212121;
    margin-bottom: 12px;
    background: linear-gradient(271deg, rgb(17 17 17), #232323db);
    font-size: 12px;
    color: #ffffff;
}

.login-form input:focus{
    outline:none;
    border-color:#6366f1;
}

.remember{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:#666;
    margin-bottom:14px;
}

.login-btn{
    width:100%;
    padding:11px;
    background:linear-gradient(135deg,#6366f1,#4f46e5);
    color:#fff;
    border:none;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    font-size:11px;
}

.login-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 25px rgba(79,70,229,.35);
}

.modal-footer{
    text-align:center;
    margin-top:16px;
    font-size:12px;
    color:#666;
}

.modal-footer a{
    color:#6366f1;
    font-weight:600;
}

.premium-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.premium-modal{
    width: 750px;
    max-width: 95%;
    background: linear-gradient(135deg, #151515a6, #000000);
    border-radius: 20px;
    display: flex;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 80px rgb(4 3 5);
    animation: pop .35s ease;
}

/* SOL */
.premium-left{
    padding:40px;
    flex:1;
}

.premium-left h2{
    font-size:20px;
    margin-bottom:12px;
    color:#f472b6;
}

.premium-left p{
    font-size:11px;
    color:#cbd5f5;
    margin-bottom:20px;
}

.premium-left ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.premium-left li{
    margin-bottom:10px;
    font-size:12px;
    color:#e5e7eb;
}

.premium-btn{
    background:linear-gradient(135deg,#f472b6,#fb7185);
    padding:8px 29px;
    border:none;
    border-radius:10px;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    font-size: 11px;
}
.premium-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 40px rgba(244,114,182,.5);
}

/* SAĞ */
.premium-right{
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(347deg, #000000, #101010);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.premium-right img{
    width:60px;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
}

/* KAPAT */
.premium-close{
    position:absolute;
    top:15px;
    right:18px;
    font-size:26px;
    cursor:pointer;
    color:#94a3b8;
}
.premium-close:hover{
    color:#fff;
}

.elite-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.elite-modal{
    width: 900px;
    height: 520px;
    background: linear-gradient(239deg, rgb(9 8 8), #0e0e0e);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 80px 160px rgba(0, 0, 0, .35);
    animation: pop .4s ease;
}

/* SOL */
.elite-left{
  width:55%;
  padding:31px;
}
.elite-left h2{
  font-size:12px;
  font-weight:700;
  color: #ff4064;
}
.elite-left p{
  font-size:11px;
  color:#777;
  margin:6px 0 20px;
}

/* ICON */
.elite-icons{
  display:flex;
  gap:16px;
  margin-bottom:26px;
}
.elite-icon-card{
  flex:1;
  background:#0d0d0d;
  border-radius:18px;
  padding:16px;
  text-align:center;
  cursor:pointer;
  border:1px solid transparent;
  transition:.25s;
}

.elite-icon-card span{
  font-size:11px;
  font-weight:500;
  color: #b4b4b4;
}
.elite-icon-card input{display:none;}
.elite-icon-card:has(input:checked){
  background:#101010;
  border-color:#c6c6c633;
}

/* INPUT */
.elite-field{
  position:relative;
  margin-bottom:22px;
}
.elite-field input,
.elite-field textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  color:#ffffff;
  border:1px solid #1c1c1c;
  background: linear-gradient(90deg, rgb(14 14 14), #090808db);
  outline:none;
  font-size:12px;
}
.elite-field textarea{height:42px;resize:none;}
.elite-field label{
  position:absolute;
  left:14px;
  transform:translateY(-50%);
  font-size:9px;
  color:#999;
  background:#ffffff;
  pointer-events:none;
  transition:.2s;
}
.elite-field input:focus + label,
.elite-field input:valid + label,
.elite-field textarea:focus + label,
.elite-field textarea:valid + label{
  top:-6px;
  font-size:10px;
  color:#ff4266;
}

/* ACTIONS */
.elite-actions{
  display:flex;
  gap:14px;
  margin-top:26px;
}
.btn-light{
  flex:1;
  background:#151515;
  color: #f9f9f9;
  border:none;
  padding:14px;
  font-size: 11px;
  border-radius:3px;
}
.btn-primary{
  flex:1.4;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#fff;
  border:none;
  padding:14px;
  font-size: 11px;
  border-radius:3px;
}

/* SAĞ */
.elite-right{
  width:45%;
  background:linear-gradient(135deg, #0c0c0c, #120c17);
  align-items:flex-end;
  justify-content:center;
}
.elite-right img{
  width:53%;
}

.avatar-stack{
    display:flex;
    align-items:center;
}

.avatar-stack img{
    width:36px;
    height:36px;
    border-radius:50%;
    border:2px solid #303030;
    margin-left:-16px;        
    background:#e8e8e8;
    transition:all .25s ease;
    cursor:pointer;
}

/* ilk eleman boşluk almasın */
.avatar-stack img:first-child{
    margin-left:130px;
}

/* hover efekti */
.avatar-stack img:hover{
    transform:translateY(-2px) scale(1.08);
    z-index:10;
}

.join-container { padding:85px 20px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.server-large-icon { width:100px; height:100px; border-radius:50%; object-fit:cover; margin-bottom:20px; border:2px solid #2f3136; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.join-title { color:white; font-size:20px; font-weight:bold; margin-bottom:10px; }
.join-desc { color:#b9bbbe; margin-bottom:25px; font-size:12px; }
.join-btn { font-size:11px;background:#5865f2; color:white; border:0; padding:12px 30px; border-radius:5px; cursor:pointer; transition:0.3s; }
.join-btn:hover { background:#4752c4; transform: scale(1.05); }

/* X Butonu Hover Ayarı */
.chat-line:hover .delete-btn { display: block !important; } 


/* ============================================================
   YENİ EKLENEN MOBİL UYUMLULUK YAMASI (HİÇBİR ŞEYİ BOZMAZ)
   ============================================================ */

@media (max-width: 1024px) {
    /* 1. Layout Fix */
    .dc-wrap {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    /* 2. Server Listesini Üstte Yatay Kaydır */
    .dc-servers {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        background: #1a1a1a;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .dc-servers::-webkit-scrollbar { display: none; }
    .dc-server { flex-shrink: 0; }

    /* 3. Chat Alanı Fix */
    .dc-chat {
        height: 65vh;
        margin-top: 10px;
    }

    /* 4. Avatar Stack Fix */
    .avatar-stack img:first-child {
        margin-left: 0 !important; /* Mobilde ortalansın diye */
    }
    .avatar-stack {
        justify-content: center;
        margin: 20px 0;
    }

    /* 5. Modalları Dikey Yap (Elite & Premium) */
    .premium-modal, .elite-modal {
        flex-direction: column;
        height: auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .premium-left, .premium-right, .elite-left, .elite-right {
        width: 100% !important;
        padding: 20px;
    }
    .premium-right, .elite-right {
        order: -1; /* Görseli üste taşı */
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nav { display: flex; flex-wrap: wrap; justify-content: center; }
    .nav a { margin: 5px 10px; }

    .bubble { max-width: 90%; }
    
    /* Oda butonları (Üstte oda seçimi olan yer) */
    .room-btn {
        padding: 12px 15px;
        font-size: 11px;
    }
    .room-text { display: none; }
}
/* Modern Header Ana Stil */
.header-modern {
    position: sticky;
    top: 20px;
    z-index: 1000;
    max-width: 1334px;
    margin: 20px auto;
    padding: 0 15px;
}

.header-container {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.only-mobile{
    display:none;
}

/* 768px ve altı = mobil */
@media (max-width:768px){
    .only-mobile{
        display:inline;
    }
}

/* Logo Stili */
.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.logo-text .dot {
    color: #e96982;
    animation: pulse 2s infinite;
}

/* Navigasyon Linkleri */
.nav-modern {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 16px;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i { font-size: 14px; opacity: 0.7; }

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #fff;
}

/* Premium Özel Efekt */
.premium-sparkle {
    color: #ffba57 !important;
    position: relative;
    overflow: hidden;
}

.premium-sparkle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,186,87,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Giriş Butonu */
.login-trigger {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    padding: 10px 20px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.login-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Kullanıcı Profili (Giriş Yapılmışsa) */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.username-badge {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    background: #1a1a1a;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #333;
}

/* Animasyonlar */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes shine {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-modern { display: none; } /* Mobilde hamburger menüye çekilebilir */
    .header-container { padding: 10px 16px; }
}

/* User Trigger Alanı */
.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 16px;
    border-radius: 16px;
    transition: 0.3s;
}

.user-trigger:hover {
    background: rgba(255, 255, 255, 0.07);
}

.user-info-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.user-name-top {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.user-role-bottom {
    color: #22c55e;
    font-size: 10px;
    font-weight: 500;
}

.avatar-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #111;
    border-radius: 50%;
}

/* Dropdown Kartı */
.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: #161616;
    border: 1px solid #282828;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    overflow: hidden;
}

.user-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown İçerik Detayları */
.dropdown-header {
    padding: 20px;
    background: linear-gradient(to bottom, #1c1c1c, #161616);
    border-bottom: 1px solid #282828;
}

.header-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-user-card img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
}

.header-card-text h6 {
    margin: 0;
    color: #fff;
    font-size: 12px;
}

.header-card-text span {
    color: #666;
    font-size: 11px;
}

/* Menü Linkleri */
.dropdown-body {
    padding: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #1f1f1f;
}

.item-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
}

/* Renkli İkon Arka Planları */
.bg-soft-primary { background: rgba(88, 101, 242, 0.1); color: #5865f2; }
.bg-soft-success { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.bg-soft-warning { background: rgba(255, 186, 87, 0.1); color: #ffba57; }

.item-text {
    display: flex;
    flex-direction: column;
}

.item-text .title {
    color: #eee;
    font-size: 12px;
    font-weight: 600;
}

.item-text .desc {
    color: #555;
    font-size: 10px;
}

/* Footer & Çıkış */
.dropdown-footer {
    padding: 10px;
    border-top: 1px solid #282828;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(233, 105, 130, 0.1);
    color: #e96982;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
}

.logout-btn:hover {
    background: #e96982;
    color: #fff;
}



.ban-container { padding: 14px; background: rgb(56 56 56 / 10%); text-align: center; animation: slideUp 0.4s ease; border-radius: 10px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#ban_countdown { font-family: monospace; font-weight: bold; color: #fff; background: #e96982; padding: 2px 8px; border-radius: 4px; margin-left: 5px; }


    .room-wrapper { position: relative; display: flex; align-items: center; }
    .room-wrapper:hover .edit-room-btn { opacity: 1; }
    .edit-room-btn { opacity: 0.5; transition: 0.2s; position: absolute; right: 10px; color: #555; font-size: 13px; z-index: 10; }
    .edit-room-btn:hover { color: #e96982 !important; opacity: 1; }



/* ================================
   GLOBAL SCROLLBAR KILL SYSTEM
   ================================ */

/* TÜM ELEMENTLER */
* {
    scrollbar-width: none !important;       /* Firefox */
    -ms-overflow-style: none !important;    /* IE / Edge */
}

/* Chrome, Safari, Opera */
*::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Özellikle modal / popup içleri */
.modal,
.modal * ,
.blog,
.blog * ,
.blog-detail,
.blog-detail * ,
.uk-modal,
.uk-modal * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.modal::-webkit-scrollbar,
.modal *::-webkit-scrollbar,
.blog::-webkit-scrollbar,
.blog *::-webkit-scrollbar,
.blog-detail::-webkit-scrollbar,
.blog-detail *::-webkit-scrollbar,
.uk-modal::-webkit-scrollbar,
.uk-modal *::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}


/* SOL DİSCORD BAR */
.dc-sidebar{
    background:linear-gradient(179deg, rgb(26 26 34), #37373700);
	border-radius:10px;
}

/* ÜST PROFİL ALANI */
.dc-top{
    width:100%;
    padding:10px 0 14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    border-bottom:1px solid #1f1f1f;
}

.dc-profile{
    width:46px;
    height:46px;
	padding:11px;
    border-radius:50%;
    overflow:hidden;
    margin-bottom: 6px;
    background-color: #4954c4;
    color: white;
}

.dc-profile img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dc-top-info{
    text-align:center;
    font-size:11px;
    color:#aaa;
}

.dc-top-info strong{
    color:#fff;
    font-size:11px;
}

/* SERVER LİSTESİ */
.dc-servers{
    margin-top:12px;
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
    width:100%;
	 border-radius: 50%;
}





.dc-server.active {
    border-radius: 50%;
    border: 2px solid #4954c4;
}

/* AKTİF ÇİZGİSİ */
.dc-server::before {
    content: "";
    position: absolute;
    left: -12px;
    width: 4px;
    height: 0;
    background: #fff;
    border-radius: 0 4px 4px 0;
    transition: 0.2s;
}
.dc-server.active::before { height: 32px; }
.dc-server:hover::before { height: 20px; }


.dc-sidebar {
    width: 72px !important;
    min-width: 72px !important;
}
.dc-server {
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin-bottom: 8px !important;
	 border-radius: 50%;
}
.dc-server img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* 2. MOBİL MODALIN PC'DE GÖZÜKMESİNİ ENGELLE (SENİN SORUNUN BUYDU) */
.mobile-server-modal, .mobile-right-handle, .menu-overlay {
    display: none; 
}

/* Ortak Çizgi Ayarı */
.dc-server {
    position: relative; /* Çizginin sunucuya göre konumlanması için şart */
}

.dc-server::before {
    content: "";
    position: absolute;
    left: -14px; /* Sidebar'ın en soluna yaslar */
    width: 4px;
    background: #fff;
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease-in-out;
    height: 0; /* Başlangıçta gizli */
    opacity: 0;
}

/* 1. MOUSE ÜZERİNE GELİNCE (HOVER) */
.dc-server:hover::before {
    height: 20px; /* Kısa çizgi */
    opacity: 1;
}

/* 2. SUNUCU AKTİFKEN (SABİT KALACAK OLAN) */
.dc-server.active::before {
    height: 38px; /* Uzun ve sabit çizgi */
    opacity: 1;
    background: #fff; /* İstersen burayı ana rengin yapabilirsin */
}

/* 3. AKTİF OLANIN ÜSTÜNE GELİNCE YİNE UZUN KALSIN */
.dc-server.active:hover::before {
    height: 38px; 
}

/* PC Sidebar Görünümü için Ekstra Garanti */
.dc-sidebar {
    overflow: visible !important; /* Çizgilerin sidebar dışına taşabilmesi için */
}

/* AKTİF ÇİZGİSİ */
.dc-server::before {
    content: "";
    position: absolute;
    left: -12px;
    width: 4px;
    height: 0;
    background: #fff;
    border-radius: 0 4px 4px 0;
    transition: 0.2s;
	
}
.dc-server.active::before { height: 32px; }
.dc-server:hover::before { height: 20px; }


/* 3. SADECE MOBİLDE ÇALIŞACAK KISIMLAR */
@media (max-width: 991px) {
    .dc-sidebar { display: none !important; }

    .mobile-right-handle {
        display: flex;
        position: fixed;
        right: 0; top: 50%; width: 18px; height: 50px;
        background: #5865f2; z-index: 5000;
        border-radius: 10px 0 0 10px;
        align-items: center; justify-content: center; color: white;
    }

    .mobile-server-modal {
        display: block;
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: #15151b;
        z-index: 6000;
        padding: 20px;
        transition: 0.4s ease;
        overflow-y: auto;
    }
    
    body.drawer-open .mobile-server-modal { right: 0; }
    body.drawer-open .menu-overlay { display: block; }

    .menu-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); z-index: 5500;
    }

    /* Modal içindeki kart tasarımı */
    .modern-server-card {
        display: flex; align-items: center; gap: 10px;
        padding: 10px; background: #1e1e26;
        border-radius: 10px; margin-bottom: 10px;
        text-decoration: none; border: 1px solid transparent;
    }
    .modern-server-card.active { border-color: #5865f2; }
    .modern-server-card img { width: 45px; height: 45px; border-radius: 8px; }
    .card-info b { color: #fff; font-size: 14px; display: block; }
    .card-info span { color: #888; font-size: 11px; }
}




/* MOBİL ÖZEL SİSTEM */
@media (max-width: 991px) {
    .dc-input input { font-size: 16px !important; touch-action: manipulation; }
    .dc-wrap > .dc-servers { display: none !important; }

    /* SOL MENÜ (ODALAR) */
    .dc-rooms {
        position: fixed !important; left: -280px !important; top: 0 !important;
        width: 280px !important; height: 100% !important; background: #111 !important;
        z-index: 3000 !important; transition: 0.3s ease !important; display: block !important;
        border-right: 1px solid #222; overflow-y: auto;
    }
    body.menu-open .dc-rooms { left: 0 !important; }

    /* SAĞ ÇEKMECE (SUNUCULAR) */
    .mobile-server-drawer {
        position: fixed; right: -80px; top: 0; width: 80px; height: 100%;
        background: #0a0a0a; z-index: 3000; transition: 0.3s ease;
        padding-top: 80px; display: flex; flex-direction: column; align-items: center; border-left: 1px solid #222;
    }
    body.drawer-open .mobile-server-drawer { right: 0; }

    body.drawer-open .mobile-right-handle { right: 80px; }

    /* GENEL DÜZEN */
    .dc-wrap { display: block !important; margin: 0 !important; width: 100% !important; height: calc(100vh - 70px) !important; position: relative; }
    .dc-chat { width: 100% !important; height: 100% !important; border-radius: 0 !important; display: flex; flex-direction: column; }
    .dc-input { position: fixed !important; bottom: 0; left: 0; width: 100%; z-index: 2500; background: #111; padding: 10px; border-top: 1px solid #222; }
    #chatBox { padding-bottom: 70px !important; flex: 1; }

    .menu-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); z-index: 2900; display: none;
    }
    body.menu-open .menu-overlay, body.drawer-open .menu-overlay { display: block; }
}


.discovery-panel {
    display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #111214; z-index: 1000; overflow-y: auto; padding: 20px;
    animation: fadeIn 0.3s ease;
}


.srv-halka-list { display: flex; gap: 15px; overflow-x: auto; padding: 5px 0 15px; scrollbar-width: none; }
.srv-halka-list::-webkit-scrollbar { display: none; }
.srv-halka { min-width: 60px; text-align: center; cursor: pointer; transition: 0.3s; }
.srv-halka:hover { transform: translateY(-3px); }
.srv-halka img { width: 50px; height: 50px; border-radius: 15px; border: 2px solid #2b2d31; object-fit: cover; }
.srv-halka span { display: block; font-size: 10px; color: #949ba4; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }


.blog-mini-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; margin-top: 10px; }
.blog-item { background: #1e1f22; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: 0.3s; }
.blog-item:hover { border-color: #5865f2; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); }
.blog-item img { width: 100%; height: 110px; object-fit: cover; opacity: 0.9; }
.blog-item-body { padding: 12px; }
.blog-item-body h4 { color: #fff; font-size: 13px; margin: 0 0 5px; font-weight: 600; }
.blog-item-body p { color: #b5bac1; font-size: 11px; line-height: 1.4; margin: 0; }


.blog-detay-box { display: none; background: #1e1f22; border-radius: 15px; padding: 20px; animation: slideIn 0.3s ease; }
.btn-geri { background: #313338; color: #fff; border: none; padding: 6px 15px; border-radius: 6px; font-size: 12px; cursor: pointer; margin-bottom: 15px; }
.btn-geri:hover { background: #4e5058; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.dc-sidebar { width: 72px !important; min-width: 72px !important; }
.dc-chat { position: relative; } /* Discovery'nin üzerine binmesi için şart */














/* GECE MODU */
.theme-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.bg-soft-dark { background: #e9ecef; color: #343a40; }

/* Genel Toggle Kutusu */
.toggle-status {
    margin-left: auto; /* En sağa yaslar */
    width: 38px;
    height: 20px;
    background: #e0e0e0; /* Kapalıyken gri */
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* İçindeki Yuvarlak (Pill) */
.status-pill {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* --- KRİTİK NOKTA: GECE MODU AKTİFKEN --- */

/* Body'de .dark varsa, toggle-status'un arka planını değiştir */
body.dark .toggle-status {
    background: #4ade80; /* Açık yeşil veya sitenin ana rengi */
}

/* Body'de .dark varsa, status-pill'i sağa kaydır */
body.dark .status-pill {
    left: 21px; /* Sağa kayma miktarı */
}

/* İsteğe bağlı: Ay ikonunu gece modunda parlat */
body.dark .bg-soft-dark {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.theme-btn i {
    font-size: 1.2rem;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Güneş ve Ay ikonlarının başlangıç konumları */
.sun-icon { color: #f1c40f; opacity: 1; transform: translateY(0) rotate(0deg); }
.moon-icon { color: #f5f3f3; opacity: 0; transform: translateY(30px) rotate(90deg); }

/* --- GECE MODU ÖZEL KODLARI (.dark class'ı body'e eklenince) --- */

/* Buton içindeki ikonların değişimi */
body.dark .sun-icon { opacity: 0; transform: translateY(-30px) rotate(-90deg); }
body.dark .moon-icon { opacity: 1; transform: translateY(0) rotate(0deg); }
body.dark .theme-btn { background: rgba(255, 255, 255, 0.1); }


.hakkinda {font-size:24px; color:white; font-weight:bold;}
.dark .hakkinda {font-size:24px; color:#7f7f7f; font-weight:bold;}
.eserinput {width: 28%; padding: 9px; background: #111111; border: 1px solid #232323; border-radius: 3px; color: #535353; font-size: 12px;}
.dark .eserinput {width: 28%; padding: 9px; background: #ffffff; border: 1px solid #eeeeee; border-radius: 3px; color: #535353; font-size: 12px;}
.eserbuton {background: linear-gradient(91deg, rgb(17 17 17), #5d5d5d); border: 0px; font-size: 12px; padding: 9px; border-radius: 3px; color: white; width: 11%;}
.dark .eserbuton {background: linear-gradient(91deg, rgb(17 17 17), #8c8c8c); border: 0px; font-size: 12px; padding: 9px; border-radius: 3px; color: white; width: 11%;}
h3 {color:white;}
.dark h3 {color:#707070;}
p {color:white;}
.dark p {color:#707070;}
.discovery-panel {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; display: none; background: #111214;}
.dark .discovery-panel {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; display: none; background: rgb(251 251 251);}
.haberler {color:#fff; font-size:13px; margin:20px 0 10px; opacity:0.6; letter-spacing:1px;}
.dark .haberler {color:#202020; font-size:13px; margin:20px 0 10px; opacity:0.6; letter-spacing:1px;}
.sunucuolustur {color: #e6e6e6;}
.dark .sunucuolustur {color: #515151;}
.kesfetbaslik {color:#fff; font-size:18px;}
.dark .kesfetbaslik {color:#676767; font-size:18px;}
.esertext {color:#f9f9f9}
.dark .esertext {color:#f9f9f9}

.dark .dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: #f0f0f0;
    border: 1px solid #f3f3f3;
    border-radius: 9px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    overflow: hidden;
}

.dark .dropdown-header {
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    border-bottom: 1px solid #ffffff;
}

.dark .header-card-text h6 {
    margin: 0;
    color: #545454;
    font-size: 12px;
}

.dark .item-text .title {
    color: #848484;
    font-size: 12px;
    font-weight: 600;
}

.dark .dropdown-footer {
    padding: 10px;
    border-top: 1px solid #dfdfdf;
}

.dark .dc-profile {
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 6px;
    background-color: #ffffff;
    color: #4f4f4f;
}

.dark .blog-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 5%);
    cursor: pointer;
    transition: 0.3s;
}

.dark .srv-halka img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: 2px solid #ececec;
    object-fit: cover;
}

.dark .elite-right {
    width: 45%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    align-items: flex-end;
    justify-content: center;
}

.dark .elite-modal {
    width: 900px;
    height: 520px;
    background: linear-gradient(239deg, rgb(255 255 255), #ffffff);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 80px 160px rgba(0, 0, 0, .35);
    animation: pop .4s ease;
}

.dark .elite-field input, .elite-field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    color: #ffffff;
    border: 1px solid #e4e4e4;
    background: linear-gradient(90deg, rgb(255 255 255), #e1e1e1db);
    outline: none;
    font-size: 12px;
}

.dark .elite-icon-card:has(input:checked) {
    background: #f0f0f0;
    border-color: #c6c6c633;
}

.dark .elite-icon-card {
    flex: 1;
    background: #f7f7f754;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .25s;
}

.dark .btn-light {
    flex: 1;
    background: #f2f2f2;
    color: #525252;
    border: none;
    padding: 14px;
    font-size: 11px;
    border-radius: 3px;
}

.dark .blog-detay-box {
    display: none;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    animation: slideIn 0.3s ease;
}

.dark .blog-item-body h4 {
    color: #3b3b3b;
    font-size: 13px;
    margin: 0 0 5px;
    font-weight: 600;
}

.dark .uk-icon {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: #464646;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
}


.dark .dc-chat {
    background: #ffffff;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    height: 68vh;
}

.dark .chat-line.admin-line {
    background: linear-gradient(271deg, rgb(255 255 255), #efefefdb);
    border-left: 3px solid #ff819a;
    padding: 10px;
}

.dark .dc-input input {
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    color: #4a4a4a;
    font-size: 12px;
    outline: none;
}

.dark .dc-chat-header {
    padding: 14px 3px;
    border-bottom: 1px solid #ffffff85;
    font-weight: 600;
    color: #595959;
}

body.dark {
    background: #121212; /* Gece modu için koyu renk */
    color: #ffffff;
}

.dark {
    background: #ffffff !important;
    color: #ffffff;
}

.dark .dc-rooms {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 14px;
}

.dark .dc-sidebar {
    background: linear-gradient(179deg, rgb(158 158 158), #37373700);
    border-radius: 10px;
}

.dark .dc-top {
    width: 100%;
    padding: 10px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #cacaca85;
}

.dark .header-container {
    background: rgb(255 255 255 / 80%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark .logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #575757;
}

.dark .nav-link.active {
    color: #202020;
}

.dark .nav-link {
    text-decoration: none;
    color: #202020;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark .premium-sparkle {
    color: #9c57ff !important;
    position: relative;
    overflow: hidden;
}

.dark .user-name-top {
    color: #5e5e5e;
    font-size: 12px;
    font-weight: 700;
}

.dark .join-title {
    color: #606060;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}