/* ==========================
   PART 1
   HEADER + SEARCH + NAVIGATION
========================== */

/* HEADER */
body{ font-family:'Poppins',sans-serif; color:#fff; background: linear-gradient(rgba(8,12,20,.88), rgba(8,12,20,.92)), url('images/bg.gif') center center / cover fixed no-repeat; min-height:100vh;

.header{

    position:relative;

    min-height:340px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(8,12,20,.78),rgba(8,12,20,.88)),
    url("images/header.jpg") center center/cover no-repeat;

    border-bottom:4px solid #ff9800;

}

.header::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    background:radial-gradient(circle,
    rgba(255,152,0,.20),
    transparent 70%);

    top:-250px;
    right:-180px;

    animation:headerGlow 8s linear infinite;

}

.header::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(255,255,255,.05),
    transparent 70%);

    bottom:-250px;
    left:-180px;

}

@keyframes headerGlow{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }

}

.header-content{

    position:relative;
    z-index:5;

    text-align:center;

}

.header h1{

    font-size:64px;

    font-weight:800;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:4px;

    text-shadow:
    0 0 15px rgba(255,152,0,.7),
    0 0 35px rgba(255,152,0,.5);

}

.header p{

    margin-top:18px;

    font-size:18px;

    color:#d7d7d7;

    letter-spacing:1px;

}

/* SEARCH */

.top-search{

    width:90%;
    max-width:900px;

    margin:45px auto;

}

.top-search input{

    width:100%;

    height:62px;

    padding:0 24px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.08);

    background:#161d2a;

    color:#fff;

    font-size:16px;

    transition:.35s;

}

.top-search input::placeholder{

    color:#8d97ab;

}

.top-search input:focus{

    border-color:#ff9800;

    box-shadow:
    0 0 20px rgba(255,152,0,.35);

}

/* NAVIGATION */

.navigation{

    width:92%;
    max-width:1200px;

    margin:auto;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:18px;

}

.tab-btn{

    position:relative;

    overflow:hidden;

    background:#1a2232;

    color:#fff;

    border:1px solid #313d52;

    border-radius:50px;

    padding:15px 28px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.tab-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transition:.45s;

}

.tab-btn:hover::before{

    left:100%;

}

.tab-btn:hover{

    background:#ff9800;

    color:#111;

    border-color:#ffb74d;

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(255,152,0,.35);

}

.tab-btn.active{

    background:linear-gradient(
        135deg,
        #ff9800,
        #ffc107
    );

    color:#111;

    border-color:#ffd54f;

    box-shadow:
    0 10px 25px rgba(255,152,0,.45);

}
/* ==========================
   PART 2
   SECTION TITLE
========================== */

.section-title{

    position:relative;

    display:inline-block;

    left:50%;
    transform:translateX(-50%);

    margin-bottom:45px;

    padding:14px 38px;

    font-size:34px;
    font-weight:700;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:2px;

    background:linear-gradient(
        135deg,
        #1b2434,
        #101722
    );

    border:1px solid rgba(255,152,0,.25);

    border-radius:50px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    inset 0 0 15px rgba(255,255,255,.03);

}

.section-title::before{

    content:"";

    position:absolute;

    top:50%;
    left:-70px;

    width:55px;
    height:3px;

    background:#ff9800;

    transform:translateY(-50%);

}

.section-title::after{

    content:"";

    position:absolute;

    top:50%;
    right:-70px;

    width:55px;
    height:3px;

    background:#ff9800;

    transform:translateY(-50%);

}

/* ==========================
   CARD GRID
========================== */

.card-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/* ==========================
   GUIDE CARD
========================== */

.guide-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        145deg,
        #1a2435,
        #111722
    );

    border-radius:22px;

    padding:28px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);

}

/* Top Glow */

.guide-card::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,152,0,.18),
        transparent 70%
    );

}

/* Bottom Glow */

.guide-card::after{

    content:"";

    position:absolute;

    bottom:-140px;
    left:-140px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(0,170,255,.10),
        transparent 70%
    );

}

/* Hover */

.guide-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:#ff9800;

    box-shadow:
    0 20px 40px rgba(255,152,0,.25);

}

/* Title */

.guide-card h3{

    position:relative;

    margin-bottom:18px;

    font-size:24px;

    color:#ffb347;

    letter-spacing:1px;

}

/* Orange Line */

.guide-card h3::after{

    content:"";

    display:block;

    width:70px;
    height:3px;

    margin-top:10px;

    background:#ff9800;

    border-radius:50px;

}

/* Description */

.guide-card p{

    position:relative;

    color:#d7d7d7;

    line-height:1.9;

    font-size:15px;

}

/* ==========================
   VIEW BUTTON
========================== */

.view-btn{

    margin-top:25px;

    padding:13px 24px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #ff9800,
        #ffc107
    );

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.view-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 25px rgba(255,152,0,.35);

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.card-grid{

    grid-template-columns:1fr;

}

.section-title{

    font-size:28px;

    padding:12px 24px;

}

.section-title::before,
.section-title::after{

    display:none;

}

}
/* ==========================
   PART 3
   PREMIUM ACCORDION
========================== */

.accordion{

    display:flex;
    flex-direction:column;
    gap:22px;

}

/* ==========================
   ITEM
========================== */

.accordion-item{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        145deg,
        #1b2434,
        #101722
    );

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);

}

/* Orange Glow */

.accordion-item::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:5px;
    height:100%;

    background:linear-gradient(
        to bottom,
        #ff9800,
        #ffc107
    );

}

/* Hover */

.accordion-item:hover{

    transform:translateY(-4px);

    border-color:#ff9800;

    box-shadow:
    0 18px 35px rgba(255,152,0,.25);

}

/* ==========================
   HEADER
========================== */

.accordion-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 25px;

    cursor:pointer;

    font-size:20px;

    font-weight:700;

    color:#fff;

    transition:.35s;

}

.accordion-header:hover{

    background:rgba(255,152,0,.08);

}

/* LEFT TITLE */

.accordion-title{

    display:flex;

    align-items:center;

    gap:15px;

}

.accordion-title i{

    width:45px;
    height:45px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#252f45;

    color:#ff9800;

    font-size:20px;

}

/* RIGHT ICON */

.accordion-header span{

    width:42px;
    height:42px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#222d42;

    color:#ff9800;

    font-size:22px;

    transition:.35s;

}

/* Rotate */

.accordion-item.open .accordion-header span{

    transform:rotate(45deg);

    background:#ff9800;

    color:#111;

}

/* ==========================
   CONTENT
========================== */

.accordion-content{

    max-height:0;

    overflow:hidden;

    padding:0 25px;

    background:#111827;

    color:#d8d8d8;

    line-height:1.9;

    transition:
        max-height .45s ease,
        padding .35s ease;

}

/* Open */

.accordion-item.open .accordion-content{

    max-height:5000px;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

/* ==========================
   LIST
========================== */

.accordion-content ul{

    list-style:none;

}

.accordion-content li{

    position:relative;

    padding-left:30px;

    margin-bottom:14px;

}

.accordion-content li::before{

    content:"";

    position:absolute;

    left:0;
    top:9px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ff9800;

    box-shadow:
    0 0 12px #ff9800;

}

/* ==========================
   INFO BOX
========================== */

.info-box{

    margin-top:18px;

    padding:18px;

    border-radius:14px;

    background:linear-gradient(
        145deg,
        #202b3d,
        #131b29
    );

    border-left:5px solid #ff9800;

}

/* ==========================
   REWARD BOX
========================== */

.reward-box{

    margin-top:18px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:15px;

}

.reward-item{

    background:#1d2638;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:15px;

    text-align:center;

    transition:.3s;

}

.reward-item:hover{

    transform:translateY(-5px);

    border-color:#ff9800;

    box-shadow:
    0 10px 20px rgba(255,152,0,.25);

}

.reward-item img{

    width:55px;
    height:55px;

    margin-bottom:10px;

}

.reward-item h4{

    color:#ffb347;

    margin-bottom:8px;

}

.reward-item p{

    color:#cfd3da;

    font-size:14px;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.accordion-header{

    font-size:17px;

    padding:18px;

}

.reward-box{

    grid-template-columns:1fr;

}

}
/* ==========================
   ITEM GRID
========================== */

.drop-items{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(150px,1fr));

    gap:14px;

}

/* ==========================
   ITEM SLOT
========================== */

.drop-item{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:8px;

    text-align:center;

    min-height:130px;

    padding:12px;

    border-radius:14px;

    background:
    linear-gradient(
        145deg,
        #1d2739,
        #131b28
    );

    border:1px solid #2c364b;

    transition:.35s;

    cursor:pointer;

}

/* Shine Effect */

.drop-item::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-40%;

    width:70px;
    height:220px;

    background:rgba(255,255,255,.08);

    transform:rotate(25deg);

    transition:.6s;

}

.drop-item:hover::before{

    top:120%;

}

/* Hover */

.drop-item:hover{

    transform:
    translateY(-6px)
    scale(1.03);

    border-color:#ff9800;

    box-shadow:
    0 12px 22px rgba(255,152,0,.28);

}

/* ==========================
   ITEM IMAGE
========================== */

.drop-item img{

    width:52px;
    height:52px;

    object-fit:contain;

    transition:.35s;

    filter:
    drop-shadow(0 0 10px rgba(255,170,0,.4));

}

.drop-item:hover img{

    transform:scale(1.1) rotate(-3deg);

}

/* ==========================
   ITEM NAME
========================== */

.drop-item span{

    color:#fff;

    font-size:13px;

    font-weight:600;

    line-height:1.3;

}

/* ==========================
   ITEM RARITY COLORS
========================== */

.drop-item.legendary{

    border:1px solid #ff9800;

}

.drop-item.legendary img{

    filter:drop-shadow(0 0 15px #ff9800);

}

.drop-item.epic{

    border:1px solid #c44dff;

}

.drop-item.epic img{

    filter:drop-shadow(0 0 15px #b84cff);

}

.drop-item.rare{

    border:1px solid #33b5ff;

}

.drop-item.rare img{

    filter:drop-shadow(0 0 15px #33b5ff);

}

.drop-item.common{

    border:1px solid #666;

}

/* ==========================
   BADGE
========================== */

.item-badge{

    position:absolute;

    top:8px;
    right:8px;

    padding:3px 8px;

    border-radius:20px;

    font-size:10px;

    font-weight:bold;

    color:#111;

    background:#ffc107;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.drop-items{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.box-title h2{

    font-size:24px;

}

.drop-item{

    min-height:115px;

    padding:10px;

}

.drop-item img{

    width:45px;
    height:45px;

}

.drop-item span{

    font-size:12px;

}

}

@media(max-width:500px){

.drop-items{

    grid-template-columns:repeat(2,1fr);

}

.drop-item{

    min-height:105px;

    padding:8px;

}

.drop-item img{

    width:40px;
    height:40px;

}

.drop-item span{

    font-size:11px;

}

}
/* ==========================
   PART 5
   BOSS CARDS
========================== */

.boss-list{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.boss-card{

    position:relative;

    overflow:hidden;

    padding:30px;

    border-radius:22px;

    background:
    linear-gradient(
        145deg,
        #1b2435,
        #10161f
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    box-shadow:
    0 18px 40px rgba(0,0,0,.35);

}

/* Top Glow */

.boss-card::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,0,0,.20),
        transparent 70%
    );

}

/* Bottom Glow */

.boss-card::after{

    content:"";

    position:absolute;

    bottom:-150px;
    left:-150px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,140,0,.12),
        transparent 70%
    );

}

.boss-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:#ff9800;

    box-shadow:
    0 20px 45px rgba(255,152,0,.28);

}

.boss-card h3{

    color:#ffb347;

    font-size:24px;

    margin-bottom:18px;

}

.boss-card h3::after{

    content:"";

    display:block;

    width:70px;
    height:3px;

    margin-top:10px;

    background:#ff9800;

    border-radius:50px;

}

.boss-card p{

    color:#d5d5d5;

    line-height:1.8;

    font-size:15px;

}

.boss-info{

    margin-top:22px;

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.boss-tag{

    padding:8px 14px;

    border-radius:30px;

    background:#232d40;

    color:#fff;

    font-size:13px;

    border:1px solid rgba(255,255,255,.08);

}

/* ==========================
   MODERN TABLE
========================== */

.table-wrapper{

    overflow-x:auto;

    border-radius:20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);

}

table{

    width:100%;

    border-collapse:separate;

    border-spacing:0;

    background:#161d2a;

    overflow:hidden;

    min-width:900px;

}

/* HEADER */

thead{

    background:
    linear-gradient(
        90deg,
        #ff9800,
        #ffc107
    );

}

th{

    padding:18px;

    color:#111;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    border:none;

}

/* BODY */

td{

    padding:18px;

    text-align:center;

    color:#e4e4e4;

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.3s;

}

/* Zebra */

tbody tr:nth-child(even){

    background:#1d2737;

}

tbody tr:nth-child(odd){

    background:#161d2a;

}

/* Hover */

tbody tr:hover{

    background:#253149;

}

/* ==========================
   DAY COLORS
========================== */

td.monday{

    color:#66d9ff;

    font-weight:600;

}

td.tuesday{

    color:#ffb347;

    font-weight:600;

}

td.wednesday{

    color:#7dff8c;

    font-weight:600;

}

td.thursday{

    color:#ff6ec7;

    font-weight:600;

}

td.friday{

    color:#ffd54f;

    font-weight:600;

}

td.saturday{

    color:#ff6961;

    font-weight:600;

}

td.sunday{

    color:#b388ff;

    font-weight:600;

}

/* ==========================
   EVENT STATUS
========================== */

.green-event{

    background:
    rgba(0,255,120,.08);

}

.green-event td{

    color:#00ff80;

    font-weight:700;

}

.blue-event{

    background:
    rgba(0,170,255,.08);

}

.blue-event td{

    color:#38bdf8;

    font-weight:700;

}

.red-event{

    background:
    rgba(255,60,60,.08);

}

.red-event td{

    color:#ff6b6b;

    font-weight:700;

}

.gold-event{

    background:
    rgba(255,200,0,.08);

}

.gold-event td{

    color:#ffd54f;

    font-weight:700;

}

/* ==========================
   TIME BADGE
========================== */

.time-badge{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    background:#232d40;

    color:#fff;

    font-size:13px;

    font-weight:600;

    border:1px solid rgba(255,255,255,.08);

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.boss-list{

    grid-template-columns:1fr;

}

.boss-card{

    padding:24px;

}

table{

    min-width:800px;

}

}   
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 50px;

    background: rgba(0,0,0,.65);
    border: 1px solid #00d9ff;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    transition: .3s ease;
    backdrop-filter: blur(8px);
}

.back-btn:hover {
    background: #00d9ff;
    color: #000;
    transform: translateX(-3px);
}
.guide-card{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
    border:1px solid rgba(255,255,255,.08);
}

.guide-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.guide-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.guide-card h3{
    text-align:center;
    margin:18px 0 10px;
    color:#fff;
}

.guide-card p{
    text-align:center;
    color:#bbb;
    padding:0 15px 20px;
}
/* Muted Event Colors */

.colosseum {
    background: #8B6B2E;
    color: #F8F8F8;
    font-weight: 600;
}

.muo {
    background: #355C7D;
    color: #F8F8F8;
    font-weight: 600;
}

.holy {
    background: #5C5470;
    color: #F8F8F8;
    font-weight: 600;
}

.labyrinth {
    background: #3E6B48;
    color: #F8F8F8;
    font-weight: 600;
}

.valley {
    background: #7A3F3F;
    color: #F8F8F8;
    font-weight: 600;
}

.ghost {
    background: #555B66;
    color: #F8F8F8;
    font-weight: 600;
}

.invasion {
    background: #7A5630;
    color: #F8F8F8;
    font-weight: 600;
}

.pvp {
    background: #6B3D3D;
    color: #F8F8F8;
    font-weight: 600;
}

.pve {
    background: #2F6B63;
    color: #F8F8F8;
    font-weight: 600;
}

.boss {
    background: #5A466F;
    color: #F8F8F8;
    font-weight: 600;
}
.colosseum,
.muo,
.holy,
.labyrinth,
.valley,
.ghost,
.invasion,
.pvp,
.pve,
.boss {
    border: 1px solid rgba(255,255,255,.08);
    transition: .2s ease;
}

.colosseum:hover,
.muo:hover,
.holy:hover,
.labyrinth:hover,
.valley:hover,
.ghost:hover,
.invasion:hover,
.pvp:hover,
.pve:hover,
.boss:hover {
    filter: brightness(1.08);
}
.map-category{
    margin:50px 0 20px;
    padding-left:15px;
    border-left:5px solid #4CAF50;
    color:#fff;
    font-size:28px;
    font-weight:700;
    letter-spacing:1px;
}
.guide-card{

background:#1b2331;
border:1px solid #2d3647;
border-radius:15px;
overflow:hidden;
margin:25px auto;
max-width:900px;

}

.guide-header{

width:100%;
padding:18px 22px;
display:flex;
justify-content:space-between;
align-items:center;
background:#1b2331;
border:0;
cursor:pointer;
color:#fff;
font-size:20px;
font-weight:700;
position:relative;

}

.guide-header::before{

content:"";
position:absolute;
left:0;
top:0;
width:6px;
height:100%;
background:#ffb300;

}

.guide-left{

display:flex;
align-items:center;
gap:12px;

}

.guide-icon{

width:36px;
height:36px;
border-radius:50%;
background:#2a3448;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:bold;
transition:.3s;

}

.guide-content{

display:none;
padding:30px;
background:#141b27;

}

.guide-content.show{

display:block;

}

.recipe{

display:flex;
justify-content:center;
align-items:center;
gap:12px;
flex-wrap:wrap;
margin:20px 0;

}

.recipe img{

width:60px;
height:60px;
border:2px solid #d4af37;
background:#222;
padding:4px;
border-radius:8px;

}

.recipe span{

font-size:28px;
color:#FFD700;
font-weight:bold;

}

.guide-content p{

text-align:center;
color:#fff;
font-size:18px;

}

hr{

border:none;
border-top:1px solid #333;
margin:30px 0;

}
.recipe-title{
    text-align:center;
    color:#FFD700;
    margin:20px 0;
}

.item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
}

.item small{
    color:#ccc;
    font-size:12px;
    text-align:center;
}

.operator{
    font-size:26px;
    font-weight:bold;
    color:#FFD700;
}

.result img{
    box-shadow:0 0 12px gold;
}

.recipe-text{
    text-align:center;
    color:#fff;
    margin-top:15px;
    line-height:1.8;
}

.success{
    color:#00ff66;
    font-weight:bold;
}
/* ================================
   WORLD BOSS DROP LIST
================================ */

.drop-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px 15px;

    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.7);
    border-radius: 6px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-btn:hover {
    background: #8a2be2;
    box-shadow: 0 0 18px rgba(138, 43, 226, 0.45);
}


/* DROP LIST */

.drop-list {
    display: none;

    width: 100%;
    margin-top: 12px;
    padding: 10px;

    box-sizing: border-box;

    background: rgba(5, 5, 8, 0.96);

    border: 1px solid rgba(138, 43, 226, 0.35);
    border-radius: 8px;

    box-shadow: inset 0 0 15px rgba(138, 43, 226, 0.05);
}

.drop-list.active {
    display: block;
}


/* DROP ITEM */

.drop-item {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 58px;

    padding: 7px;
    margin-bottom: 7px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;

    transition: all 0.25s ease;
}

.drop-item:last-child {
    margin-bottom: 0;
}

.drop-item:hover {
    background: rgba(138, 43, 226, 0.12);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateX(3px);
}


/* ITEM IMAGE BOX */

.drop-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);

    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 6px;

    overflow: hidden;
}

.drop-icon img {
    width: 42px;
    height: 42px;

    object-fit: contain;
    display: block;
}


/* ITEM TEXT */

.drop-info {
    display: flex;
    flex-direction: column;

    margin-left: 12px;
    gap: 3px;

    min-width: 0;
}

.drop-info strong {
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drop-info span {
    color: #999;

    font-size: 11px;
}


/* MOBILE */

@media (max-width: 600px) {

    .drop-btn {
        padding: 9px;
        font-size: 11px;
    }

    .drop-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .drop-icon img {
        width: 36px;
        height: 36px;
    }

    .drop-info strong {
        font-size: 12px;
    }

    .drop-info span {
        font-size: 10px;
    }

}