.server-info-content {
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.de_nav li { cursor: pointer; transition: all .3s; }

/* Warna tombol saat berhasil copy */
.btn-copied {
    background: #28a745 !important;
    border-color: #28a745 !important;
}


/* Update Logs */
.changelog-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px !important;
    color: rgba(255,255,255,0.7);
}
.changelog-content i {
    font-size: 14px;
    width: 20px;
}
/* Mempertahankan style asli bloglist */
.bloglist.item {
    margin-bottom: 20px;
}

/* Store */
/* Mengatur list agar rapi secara horizontal namun poin-poin tetap vertikal */
.d-specs ul li {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px;
    font-size: 14px;
}
/* Memperbaiki alignment harga */
.d-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}
/* Menghilangkan switch plan karena Tebex biasanya satu kategori satu list */
.switch-set { display: none; }

/* Team */
/* Styling Box agar identik dengan Update Logs */
.team-box {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    padding-bottom: 25px;
    transition: 0.3s ease-in-out;
}

.bloglist.item:hover .team-box {
    border-color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.08) !important;
}

/* Avatar Bulat Sempurna */
.avatar-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 100%;
    border: 2px solid var(--primary-color);
    padding: 4px;
    background: rgba(var(--primary-color-rgb), 0.1);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

/* Merapikan Social Link */
.social-icons-team a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin: 0 4px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-team a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Role Label (seperti d-date di update log) */
.team-box .d-date {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}


/* Store */
/* Card Container */
.store-card {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding-bottom: 20px;
    transition: 0.4s cubic-bezier(0.24, 0, 0.22, 1);
    overflow: hidden;
}

.store-item:hover .store-card {
    border-color: var(--primary-color) !important;
    transform: translateY(-8px);
    background: rgba(var(--primary-color-rgb), 0.05) !important;
}

/* Gambar Produk */
.store-image {
    position: relative;
    background: rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

/* Badge Tebex Style */
.store-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* Harga */
.store-price {
    font-family: 'Oxanium', sans-serif;
    font-weight: bold;
}
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.8em;
    margin-right: 8px;
}
.new-price {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Tombol Lebar */
.btn-fullwidth {
    width: 100%;
    display: block;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Efek Glow untuk item unggulan */
.border-glow {
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.2);
    border: 1px solid rgba(var(--primary-color-rgb), 0.4) !important;
}

/* Mobile */

/* --- GLOBAL ANIMASI --- */
.server-info-content {
    animation: smoothFade 0.4s ease-out;
}
@keyframes smoothFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FIX NAVBAR & HAMBURGER (INDEX & STORE) --- */
@media (max-width: 992px) {
    header, header.transparent {
        background: #0b0b0b !important;
        position: fixed !important;
        width: 100% !important;
        display: block !important;
        z-index: 1000 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Paksa Icon Hamburger (Titik Tiga) Muncul Putih */
    #menu-btn {
        display: block !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        margin-top: 15px !important;
    }

    #menu-btn:before {
        color: #ffffff !important;
    }

    /* Tampilan Menu List di dalam Hamburger */
    #mainmenu {
        background: #111 !important;
    }

    #mainmenu li a {
        color: #fff !important;
        padding: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Link Store khusus Mobile */
    .mobile-store-link {
        display: block !important;
        background: var(--primary-color) !important;
        margin: 10px !important;
        border-radius: 5px;
        text-align: center;
    }

    /* Perbaikan Tab IP */
    .de_nav {
        display: flex !important;
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 5px !important;
        border-radius: 10px;
    }
    .de_nav li {
        flex: 1;
        padding: 10px 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .de_nav li.active {
        background: var(--primary-color) !important;
        border-radius: 8px;
    }
}

@media (min-width: 993px) {
    .mobile-store-link { display: none !important; }
}