/* ============================================
   TIER-SORTIEREN - Game-specific Styles
   ============================================ */

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* Override score panel position */
.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;
}

/* 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;
}

/* Sorting animation */
@keyframes sortSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    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);
}

/* Home highlight pulse */
@keyframes homePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

/* Animal wobble when grabbed */
@keyframes animalWobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Instructions styling specific to this game */
.instructions {
    line-height: 1.6;
}
