/* Level Up Interface Styles */
.vignette-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
}

.squishy-button {
    position: relative;
    transition: all 0.2s ease-out;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b2e 100%);
    border: 2px solid #FFD700;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    color: white;
}

.squishy-button:active {
    transform: scale(0.97);
}

.squishy-button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.squishy-button.selected::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.bubbly-text {
    background: linear-gradient(to bottom, #fff 20%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}

.central-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 999;
    pointer-events: none;
}

/* Rounded Extra Utility */
.rounded-extra {
    border-radius: 3.5rem;
}