/* ============================================
   BALLOON CATCH - Game-specific Styles
   ============================================ */

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* Back link styling is now in shared/css/game-overlays.css */

/* Override score panel position for this game */
.ui-overlay {
    top: auto;
    bottom: auto;
    top: 10px;
}

/* Stats Display */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 2rem;
    line-height: 1;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #4ecdc4;
    text-shadow: 2px 2px 8px rgba(78, 205, 196, 0.5);
    min-width: 70px;
    text-align: left;
}

.stat-value.warning {
    color: #ff6b6b;
    text-shadow: 2px 2px 8px rgba(255, 107, 107, 0.5);
    animation: pulse 0.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Session High Score */
.session-high {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-align: center;
}

.session-high span {
    color: #ffe66d;
    font-weight: bold;
}

/* Balloon pop animation placeholder (handled in JS) */
@keyframes pop {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
}

/* Floating score animation */
@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

.floating-score {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Wave Transition styling is now in shared/css/game-overlays.css */

/* Responsive adjustments now in shared/css/game-overlays.css */
