/* ===================================
   PROFILE SCROLLBAR
   =================================== */
#profile-scroll-container,
#store-scroll-area,
.purchase-bundle-contents {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) rgba(13, 17, 23, 0.5);
}

#profile-scroll-container::-webkit-scrollbar,
#store-scroll-area::-webkit-scrollbar,
.purchase-bundle-contents::-webkit-scrollbar {
    width: 10px;
}

#profile-scroll-container::-webkit-scrollbar-track,
#store-scroll-area::-webkit-scrollbar-track,
.purchase-bundle-contents::-webkit-scrollbar-track {
    background: rgba(13, 17, 23, 0.2);
    border-radius: 5px;
}

#profile-scroll-container::-webkit-scrollbar-thumb,
#store-scroll-area::-webkit-scrollbar-thumb,
.purchase-bundle-contents::-webkit-scrollbar-thumb {
    background-color: var(--accent-cyan);
    border-radius: 5px;
    border: 2px solid rgba(1, 4, 9, 0);
    background-clip: padding-box;
}

#profile-scroll-container::-webkit-scrollbar-thumb:hover,
#store-scroll-area::-webkit-scrollbar-thumb:hover,
.purchase-bundle-contents::-webkit-scrollbar-thumb:hover {
    background-color: #00ffff;
}

/* ===================================
   PROFILE LOADOUT UI
   =================================== */
.loadout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}
.loadout-item {
    border: 2px solid var(--panel-border);
    border-radius: 0.5rem;
    background: rgba(1, 4, 9, 0.7);
    cursor: pointer;
    transition: all 0.2s ease-out;
    position: relative;
    overflow: hidden;
}
.loadout-item:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}
.loadout-item.equipped {
    border-color: var(--price-green);
    box-shadow: 0 0 15px var(--price-green);
}
.loadout-item-preview {
    height: 50px;
    border-bottom: 2px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.loadout-item-name { padding: 0.5rem; text-align: center; font-weight: 700; font-size: 0.75rem; }
.equipped-check {
    position: absolute;
    top: 4px; right: 4px;
    width: 20px; height: 20px;
    background-color: var(--price-green);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
}
#equipment-accordion-btn .title {
    margin-bottom: 0; text-align: left;
}

.player-title {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-cyan), var(--price-green));
    color: var(--bg-color);
    padding: 0.1rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
    vertical-align: middle;
    line-height: 1.2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
