/* enhancements.css */

/* 1. Scroll Entrance Animations (Bubbles Only) */
.bubble.animate {
    opacity: 0;
    transform: translateY(30px);
}

.bubble {
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.bubble.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 2. "Premium" Interaction Glow (Removed sliding shine per user request) */
.mainpage-btn-effect,
.show-more-btn,
.social-btn,
.bubble-game-other .button-container a {
    position: relative;
    overflow: hidden;
}

/* 3. Scroll Progress Indicator (Bottom) */
#scroll-indicator-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 999999;
    pointer-events: none;
}

#scroll-indicator-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed 0%, #a259f7 100%);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
    transition: width 0.1s ease-out;
}

/* 4. Glow Cursor Style (Optional enhancement) */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}