/* Item Container - Enhanced Styling */
.item-container {
    margin-bottom: 1rem;
    padding: 1rem;
    text-align: center;
}

.current-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem;
    margin-top: 0.5rem;
    min-height: 120px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.current-item.item-active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 44, 191, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    animation: itemGlow 2s ease-in-out infinite;
}

@keyframes itemGlow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), inset 0 0 40px rgba(0, 212, 255, 0.15);
        transform: scale(1.02);
    }
}

.item-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.item-active .item-icon {
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

.item-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.item-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.3;
}

.item-hint {
    font-size: 0.7rem;
    font-weight: 600;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.3rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: hintPulse 1.5s ease-in-out infinite;
}

@keyframes hintPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}