 /* ბაზისური კონტეინერი */
.game-nav-container {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(18, 18, 18, 0.95);
    padding: 20px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.nav-item2 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* ბოსის აქტიური მდგომარეობა */
.boss-active-state {
    background: rgba(255, 0, 0, 0.1) !important;
}

/* პარტიკლების კონტეინერი */
.boss-fire-wrapper {
    position: absolute;
    inset: -10px;
    pointer-events: none;
    z-index: -1;
}

/* თავად პარტიკლი - ფერების თამაშით */
.fire-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1.5px);
    opacity: 0;
    z-index: 10;
}

/* ჰოვერი ბოსის ღილაკზე - რომ არ გაფუჭდეს ვიზუალი */
#boss-button:hover {
    background: rgba(255, 255, 255, 0.1) !important; /* არ წითლდება მთლიანად */
    transform: scale(1.1);
}

#boss-button:hover i {
    color: #ff3e3e; /* მხოლოდ აიქონი წითლდება */
    text-shadow: 0 0 10px #ff0000;
}

/* სხვა ღილაკების სტანდარტული ჰოვერი */
.nav-item2:not(#boss-button):hover {
    background: #ff3e3e;
    transform: scale(1.15);
}

/* Tooltip */
.nav-item2::after {
    content: attr(data-title);
    position: absolute;
    right: 70px;
    background: #ff3e3e;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav-item2:hover::after { opacity: 1; visibility: visible; right: 60px; }
.nav-item2 span { display: none; }

 
  /* კონტეინერი */
.gacha-box-container { text-align: center; padding: 40px; }
.mystery-box { position: relative; cursor: pointer; display: inline-block; transition: 0.3s; }
.mystery-box:hover { transform: scale(1.05); }
.box-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-shadow: 0 0 50px rgba(255,215,0,0.3); border-radius: 50%; z-index: -1; animation: pulse 2s infinite; }

/* მოდალი */
.modal-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; z-index: 9999; backdrop-filter: blur(8px); }
.modal-content { background: #1a1a1e; width: 90%; max-width: 700px; border-radius: 20px; padding: 30px; position: relative; border: 1px solid #333; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 30px; color: #666; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: #fff; }

.card-reveal-wrapper { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

/* ბარათის ვიზუალი */
.main-card-frame { width: 260px; height: 380px; border-radius: 15px; overflow: hidden; position: relative; border: 4px solid #444; background: #000; transition: 0.5s; }
.main-card-frame img { width: 100%; height: 100%; object-fit: cover; }
.rarity-tag { position: absolute; top: 10px; right: 10px; padding: 5px 12px; border-radius: 5px; font-weight: bold; background: rgba(0,0,0,0.8); z-index: 2; font-size: 14px; }

/* ეფექტები რარიტეტზე */
.main-card-frame.Splus { border-color: #ff00ff; box-shadow: 0 0 40px rgba(255, 0, 255, 0.6); animation: shake 0.5s infinite alternate; }
.main-card-frame.S { border-color: #ffd700; box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }

/* ტექსტის მხარე */
.card-details-side { flex: 1; min-width: 250px; text-align: left; }
#won-card-name { font-size: 28px; color: #fff; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.card-divider { height: 3px; width: 50px; background: #ff4d4d; margin: 15px 0; }
.card-description { color: #aaa; line-height: 1.6; font-size: 15px; min-height: 80px; }
.won-status { color: #4CAF50; font-weight: bold; margin-bottom: 20px; font-size: 14px; }
.collect-btn { background: #ff4d4d; color: #fff; border: none; padding: 12px 30px; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; width: 100%; }
.collect-btn:hover { background: #ff1a1a; transform: translateY(-2px); }

/* ანიმაციები */
@keyframes shake { from { transform: rotate(-1deg); } to { transform: rotate(1deg); } }
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
.animate-reveal { animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes zoomIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    
    .main-card-frame { 
    width: 260px; 
    height: 380px; 
    border-radius: 15px; 
    overflow: hidden; 
    position: relative; 
    border: 4px solid #444; 
    background: #000; 
    transition: transform 0.1s ease; /* სიგლუვისთვის */
    transform-style: preserve-3d; /* 3D ეფექტისთვის */
    will-change: transform;
}

/* ბარათის შიდა ელემენტებს მივცეთ სიღრმე */
.main-card-frame img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transform: translateZ(20px); /* სურათი ოდნავ წინ გამოიწევა */
}

.rarity-tag {
    transform: translateZ(40px); /* რარიტეტი უფრო წინ იქნება */
}
    .main-card-frame.Splus::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.1s;
    pointer-events: none;
    z-index: 5;
}

  
  
   /* მუქი მოდალის სტილები */
    .magic-modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.85); display: none; align-items: center; justify-content: center; z-index: 9999;
        backdrop-filter: blur(5px);
    }
    .magic-modal {
       background: var(--clr);
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #333;
    color: #fff;
    }
    .magic-modal h3 { margin: 0 0 25px; color: #fff; text-align: center; font-size: 1.6rem; font-family: 'font-1'; font-weight: 600; }
    
    .magic-input-group { margin-bottom: 20px; position: relative; }
    
    .magic-input {
        width: 100%; padding: 14px 18px; border: 2px solid #333; border-radius: 2px;
        background: #0c0c0c; color: #fff; font-family: 'font-1'; outline: none;
        transition: all 0.3s ease; box-sizing: border-box; font-size: 15px;
    }
    .magic-input:focus { border-color: #3498db; box-shadow: 0 0 10px rgba(52, 152, 219, 0.3); }
    .magic-input.input-error { border-color: #e74c3c !important; }
    .magic-input.input-success { border-color: #2ecc71 !important; }
    
    .magic-btn {
        width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: 0.4s;
    font-family: 'font-1';
    color: white;
    background: var(--color-second-vr);
    }
    .magic-btn:hover { background: #cf2d3c; }
    .magic-btn:disabled { background: #444; cursor: not-allowed; opacity: 0.6; }

    .close-magic { position: absolute; top: 20px; right: 20px; cursor: pointer; font-size: 24px; color: #777; transition: 0.3s; }
    .close-magic:hover { color: #fff; }

    .magic-alert-container { position: fixed; top: 20px; right: 20px; z-index: 10000; }
    .magic-alert {
        background: #e74c3c; color: white; padding: 15px 25px; border-radius: 10px;
        margin-bottom: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        font-family: sans-serif; font-size: 14px; font-weight: 500;
        display: none; animation: slideIn 0.4s ease forwards;
    }
    @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
    .magic-status-text { font-size: 11px; margin-top: 6px; min-height: 15px; }
       
    button.dle-login-button {
padding: 20px 10px 10px 10px;
    width: 100%;
    background: #3a3a3a00;
    border: none;
    color: #d5d5d5;
    font-family: 'font-1';
    margin-top: 10px;
    cursor: pointer;
    font-size: 15px;
    }
            button.dle-login-button:hover {
    background: none !important;
}



      .w1999 {
    display: inline-block;  
    width: 186px;
    padding: 10px;
    vertical-align: top;    
    box-sizing: border-box; 
}
       
.pm-container input[type=text], .user-info input, .user-info textarea {
    background-color: var(--clr);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 44px !important;
    height: 24px !important;
    margin: 0 10px 0 0 !important;
    background-color: #383b46;
    border-radius: 24px !important;
    position: relative;
    cursor: pointer;
    outline: none;
    vertical-align: middle !important;
    margin: 0 5px 0 0;
    transition: background-color 0.3s ease;
}

input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

input[type="checkbox"]:checked {
    background-color: var(--miku-active-clr);
}

input[type="checkbox"]:checked::after {
    transform: translateX(20px);
    background-image: url(https://animeb.ge/yy.svg);
}
       

       
       
       
/* XP შეტყობინების სტილი */
.xp-toast {
    position: fixed;
    bottom: 20px;
    right: -350px; /* თავიდან დამალულია */
    background: #1c1c1e;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #3a3a3c;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    min-width: 250px;
}

.xp-toast.show {
    right: 20px; /* გამოჩენისას */
}

.xp-icon {
    font-size: 24px;
    background: #2c2c2e;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.xp-text {
    font-size: 14px;
    line-height: 1.4;
}

/* Level Up - სპეციალური ოქროსფერი სტილი */
.xp-toast.lvl-up {
    border-color: #f9ca24;
    background: linear-gradient(145deg, #1c1c1e, #2c2610);
}

.xp-toast.lvl-up .xp-icon {
    background: #f9ca24;
    color: #000;
    box-shadow: 0 0 15px rgba(249, 202, 36, 0.4);
}
       
       
       
       .notif-container { padding: 20px; background: #fff; border-radius: 8px; }
.notif-item { 
    display: flex; align-items: center; padding: 15px; border-bottom: 1px solid #f0f0f0; 
    position: relative; transition: 0.3s;
}
.notif-item.unread { background: #f9f9ff; border-left: 3px solid #5468ff; }
.notif-item:hover { background: #fcfcfc; }
.notif-body { flex: 1; margin-left: 15px; }
.notif-body strong { display: block; color: #333; margin-bottom: 4px; }
.notif-body p { margin: 0; color: #666; font-size: 13px; }
.notif-date { font-size: 11px; color: #999; }
.notif-delete { cursor: pointer; color: #ccc; font-size: 20px; padding: 0 10px; }
.notif-delete:hover { color: #ff0000; }
       
       
       
       /* MangaDex Style List */
.reading-item-list { /* ეს კლასი მიეცი <ul>-ს სადაც თავები გამოდის */
    padding: 0;
    margin: 0;
    list-style: none;
}

.chapter-row {
    margin-bottom: 4px; /* მცირე დაშორება ხაზებს შორის */
}

.chapter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #181818; /* მუქი ფონი, როგორც სურათზეა */
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.chapter-link:hover {
    background: #212121; /* ოდნავ ნათელი ჰოვერი */
}

/* მარცხენა მხარე: იკონკა და სათაური */
.chapter-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chapter-icon {
    color: #a0a0a0;
    font-size: 14px;
}

.chapter-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
}

/* მარჯვენა მხარე: თარიღი და სტატისტიკა */
.chapter-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chapter-date {
    color: #a0a0a0;
    font-size: 13px;
}

.chapter-stats {
    color: #a0a0a0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 60px;
    justify-content: flex-end;
}

/* მობილურისთვის მორგება */
@media (max-width: 600px) {
    .chapter-date {
        display: none; /* მობილურზე თარიღი დავმალოთ რომ არ გაიწელოს */
    }
}
              
        .chapter-link {
    background: #19191c !important;
    border-radius: 5px !important;
            margin-bottom: 5px;
}
       
       .chapters-list-ul ul {
    background: #242429;
    padding: 10px;
}
      .chapter-section {
    background: #242429 !important;
} 
       
       .manga-heart-click.is-liked .heart-icon,
.manga-heart-click.is-liked .like-count {
    color: #ea3748 !important; /* წითელი ფერი */
}
 