#magic-menu-btn {
    position: fixed;
    right: 40px;
    bottom: 240px;
    width: 65px;
    height: 65px;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#magic-menu-btn:hover {
    transform: scale(1.1);
}

.orb {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* Shimmering Gold, Silver, Rose Gold Gradient */
    background: linear-gradient(135deg,
            #d4af37 0%,
            /* Gold */
            #e5e4e2 35%,
            /* Silver */
            #b76e79 70%,
            /* Rose Gold */
            #d4af37 100%);
    background-size: 200% 200%;
    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.2),
        inset 2px 2px 5px rgba(255, 255, 255, 0.5);
    animation: orbPulse 3s ease-in-out infinite, orbShimmer 5s linear infinite;
    z-index: 2;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(183, 110, 121, 0.5);
    }
}

@keyframes orbShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Orbit Text Enhancement */
.orbit-text {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateOrbit 15s linear infinite;
    pointer-events: none;
    z-index: 5;
    transform-origin: center;
    /* Removed mix-blend-mode: difference — invisible on dark backgrounds */
}

.orbit-text text {
    fill: #000;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Fallback Shadow Animation (White Pulse) */
@keyframes textPulseShadow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px white);
    }

    50% {
        filter: drop-shadow(0 0 8px white);
    }
}

/* --- LIQUID GLASS FULLSCREEN OVERLAY --- */
#magic-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

#magic-panel.active {
    opacity: 1;
    visibility: visible;
}

/* --- SHARED GLASS SYSTEM --- */
.glass-container {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.glass-container--large {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    transform: scale(0.9) translateY(40px);
}

#magic-panel.active .glass-container--large {
    transform: scale(1) translateY(0);
}

.glass-filter,
.glass-overlay,
.glass-specular {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.glass-filter {
    z-index: 0;
    backdrop-filter: blur(25px) saturate(140%);
    -webkit-backdrop-filter: blur(25px) saturate(140%);
    filter: url(#lensFilter);
}

.glass-overlay {
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
}

.glass-specular {
    z-index: 2;
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.glass-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 60px 30px 40px;
    gap: 20px;
}

/* Close button - Minimal floating */
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.close-btn:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* --- ORGANIC CONTENT LAYOUT --- */
.organic-glass-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.glass-item {
    text-decoration: none;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}

.glass-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- TYPOGRAPHY: BOLD & VARIED --- */
.grid-label {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

/* Individual Styles / Varied appearance */
.link-cinema .grid-label {
    font-size: 1.1rem;
    color: #111;
    letter-spacing: -0.02em;
}

.link-look .grid-label {
    font-family: 'Italiana', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #8a3a47;
}

.link-app .grid-label {
    color: #f39c12;
}

.link-show .grid-label {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5rem;
    text-transform: none;
    color: #c0392b;
    font-weight: 400;
}

.link-world .grid-label {
    font-style: italic;
    color: #2980b9;
    letter-spacing: 0.2em;
}

.link-art .grid-label {
    color: #8e44ad;
    font-size: 0.9rem;
}

.link-store .grid-label {
    font-weight: 300;
    opacity: 0.7;
}

.link-find .grid-label {
    color: #d35400;
    text-decoration: underline;
}

.link-sahne .grid-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 1.2rem;
}

.menu-footer {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 5px;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    margin-top: 30px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .glass-container--large {
        padding: 10px;
    }

    .glass-content {
        padding: 40px 15px 30px;
        gap: 10px;
    }

    .glass-item {
        padding: 10px 18px;
    }

    .grid-label {
        font-size: 0.7rem !important;
    }
}