/* ==========================================================================
   ArcadeX - Universal In-Game Navigation Widget Styles
   ========================================================================== */

#arcadex-hud-root {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 99999;
    font-family: 'Poppins', -apple-system, sans-serif;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

#arcadex-hud-root.hud-bottom-left {
    top: auto;
    bottom: 16px;
    left: 16px;
}

#arcadex-hud-root.hud-top-right {
    left: auto;
    right: 16px;
}

.arcadex-hud-pill {
    background: rgba(10, 14, 25, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 9999px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 240, 255, 0.2);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.arcadex-hud-pill:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00f0ff;
    color: #00f0ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 0 18px rgba(0, 240, 255, 0.45);
}

.arcadex-hud-pill i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.arcadex-hud-pill:hover i.fa-arrow-left {
    transform: translateX(-3px);
}

.arcadex-hud-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(10, 14, 25, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.arcadex-hud-btn:hover {
    color: #00f0ff;
    border-color: rgba(0, 240, 255, 0.4);
    transform: scale(1.08);
}

@media (max-width: 600px) {
    #arcadex-hud-root {
        top: 10px;
        left: 10px;
    }
    .arcadex-hud-pill {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    .arcadex-hud-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}
