@scope (.GMENUUI) 
{


        .menu-container {
            position: relative;
            display: inline-block;
        }

        .ellipsis-button {
            border: none;
            background: #242424;
            box-shadow: 
                10px 10px 20px rgba(0, 0, 0, 0.7), 
                -10px -10px 20px rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            color: #d5a865;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ellipsis-button:hover {
            transform: translateY(-2px);
            box-shadow: 
                12px 12px 24px rgba(0, 0, 0, 0.8), 
                -12px -12px 24px rgba(255, 255, 255, 0.15);
        }

        .ellipsis-button:active {
            transform: translateY(0);
            box-shadow: 
                5px 5px 10px rgba(0, 0, 0, 0.6), 
                -5px -5px 10px rgba(255, 255, 255, 0.05);
        }

        .ellipsis-dots {
            display: flex;
            gap: 3px;
        }

        .dot {
            width: 4px;
            height: 4px;
            background: #d5a865;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .ellipsis-button:hover .dot {
            background: #e6c085;
            transform: scale(1.2);
        }

        .popup-menu {
            position: absolute;
            top: 60px;
            right: 0;
            background: #242424;
            box-shadow: 
                10px 10px 20px rgba(0, 0, 0, 0.7), 
                -10px -10px 20px rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow: hidden;
        }

        .popup-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .menu-item {
            padding: 14px 20px;
            color: #d5a865;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item:hover {
            background: rgba(213, 168, 101, 0.1);
            color: #e6c085;
            transform: translateX(5px);
        }

        .menu-item:active {
            transform: translateX(2px);
        }

        .menu-icon {
            width: 16px;
            height: 16px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .menu-item:hover .menu-icon {
            opacity: 1;
        }

        .menu-separator {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 4px 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(213, 168, 101, 0.3);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Demo text */
        .demo-text {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #d5a865;
            font-size: 18px;
            font-weight: 300;
            opacity: 0.7;
        }

}
