/* ===================================
   COMBO SYSTEM STYLES
   =================================== */
.combo-display {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF4500, #FFD700);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 215, 0, 0.8);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    display: none;
    animation: comboAppear 0.3s ease, comboPulse 0.5s infinite;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.6);
}

.combo-display.active {
    display: block;
}

@keyframes comboAppear {
    from {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

@keyframes comboPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* ===================================
   HONEY JAR METER STYLES
   =================================== */
.honey-jar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 6px 12px;
    margin-top: 8px;
}

.honey-icon {
    font-size: 1.3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.honey-progress {
    width: 80px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.honey-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    width: 0%;
}

.honey-count {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    min-width: 20px;
    text-align: center;
}

/* Honey jar full animation */
@keyframes honeyFull {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.honey-jar-container.full {
    animation: honeyFull 0.5s;
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Mobile phones */
@media (max-width: 480px) {
    .combo-display {
        font-size: 1.2rem;
        padding: 6px 12px;
        top: 100px;
        border-width: 2px;
    }

    .honey-jar-container {
        padding: 4px 8px;
        gap: 6px;
    }

    .honey-icon {
        font-size: 1.1rem;
    }

    .honey-progress {
        width: 60px;
        height: 10px;
    }

    .honey-count {
        font-size: 0.9rem;
        min-width: 16px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .combo-display {
        font-size: 1rem;
        padding: 4px 10px;
        border-width: 2px;
    }

    .honey-progress {
        width: 50px;
        height: 8px;
    }

    .honey-icon {
        font-size: 1rem;
    }

    .honey-count {
        font-size: 0.8rem;
    }
}

/* Landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .combo-display {
        top: 50px;
        font-size: 1rem;
        padding: 4px 10px;
    }

    .honey-jar-container {
        padding: 3px 6px;
        gap: 4px;
    }

    .honey-icon {
        font-size: 1rem;
    }

    .honey-progress {
        width: 50px;
        height: 8px;
    }

    .honey-count {
        font-size: 0.8rem;
    }
}