@media (max-width: 480px) {}

/* Rock & Roll Floating Action Button */
.rock-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fabEntrance 0.4s ease-out 0.5s both;
}

@keyframes fabEntrance {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rock-fab {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
}

.rock-fab:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.rock-fab:active {
    transform: scale(0.95);
}

.rock-fab.clicked {
    animation: rockBurst 0.3s ease-out;
}

@keyframes rockBurst {

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

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

.rock-emoji {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    display: inline-block;
}

.rock-counter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0055;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    min-width: 28px;
    text-align: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.rock-counter-badge.visible {
    opacity: 1;
    transform: scale(1);
}

.rock-counter-badge.bump {
    animation: badgeBump 0.3s ease;
}

@keyframes badgeBump {

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

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

.rock-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bitcoin-gold);
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Floating +1 Indicator */
.rock-plus-one {
    position: fixed;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bitcoin-gold);
    pointer-events: none;
    animation: floatUpBurst 1s ease-out forwards;
    opacity: 1;
    z-index: 1000;
    text-shadow: 0 0 8px rgba(247, 147, 26, 0.6);
}

@keyframes floatUpBurst {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.8);
    }
}

/* Particle effects */
.rock-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--bitcoin-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 8px rgba(247, 147, 26, 0.6);
}

@keyframes particleBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: var(--particle-tx) var(--particle-ty) scale(0);
    }
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Click Pulse Animation */
@keyframes rockPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 50px rgba(247, 147, 26, 0.8);
    }

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

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px);
    }
}

@media (max-width: 768px) {
    .rock-fab-container {
        bottom: 20px;
        right: 20px;
    }

    .rock-fab {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .rock-label {
        font-size: 0.75rem;
    }
}