.actionSheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px) !important;

    z-index: 1000;
    width: 100%;
    max-width: 400px;
    padding: 8px 16px calc(5px + env(safe-area-inset-bottom, 10px));
    background: rgba(15,15,15,.7);
    backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,.05);
    border-radius: 32px 32px 0 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    
    transform: translateY(105%); 
    opacity: 0;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.32,.72,0,1), opacity .3s;
    -webkit-tap-highlight-color: transparent;
}

.actionSheet.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.actionSheet::before {
    content: "";
    width: 32px;
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    margin: 0 auto 8px;
}

.actionSheet-btn {

    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    color: #fff;
    font: 500 17px sans-serif;
    text-decoration: none;
    transition: background .15s;
}

.actionSheet-btn:active {
    background: rgba(255,255,255,.05);
    border-radius: 12px;
}

.actionDropdown {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 20px;
    min-width: 170px;
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9) perspective(1000px) rotateX(-10deg);
    transform-origin: top right;
    transition: 
        transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        opacity 0.3s ease, 
        visibility 0.3s;
}

.actionDropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.actionDropdown li {
    list-style: none;
    width: 100%;
}

.actionDropdown a {
    display: block;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font: 500 15px 'Nunito', sans-serif;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.actionDropdown a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 24px;
}

.actionDropdown a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.actionDropdown a:hover::before {
    transform: translateY(-50%) scale(1);
}

.actionDropdown a[href*="logout"] {
    color: #ff453a;
}

.actionDropdown a[href*="logout"]:hover {
    background: rgba(255, 69, 58, 0.15);
    color: #ff6961;
}

@media (max-width: 1024px) {
    .actionDropdown { display: none !important; }
}