/* Rocket Button Styles */
.btt-rocket-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; /* Increased from 100px */
    height: 60px; /* Increased from 100px */
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.btt-rocket-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btt-rocket-button:hover {
    transform: translateY(-5px) scale(1.1);
}

.btt-rocket-button:active {
    transform: translateY(-2px) scale(1.05);
}

.btt-rocket {
    width: 70px; /* Increased from 64px */
    height: 70px; /* Increased from 64px */
    transition: transform 0.3s ease;
}

.btt-rocket-button:hover .btt-rocket {
    transform: translateY(-2px);
    animation: rocketShake 0.5s ease-in-out;
}

@keyframes rocketShake {
    0%,
    100% {
        transform: translateY(-2px) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(2deg);
    }
    75% {
        transform: translateY(-1px) rotate(-2deg);
    }
}

.btt-rocket-button.launching {
    animation: rocketLaunch 0.6s ease-in-out forwards;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        transform: translateY(-100vh) scale(0.8);
        opacity: 0;
    }
}

/* Tail Fire */
.btt-fire {
    animation: fireFlicker 0.2s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1) translateY(1px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .btt-rocket-button {
        width: 120px; /* Increased from 80px */
        height: 120px; /* Increased from 80px */
        bottom: 100px;
    }

    .btt-rocket {
        width: 78px; /* Increased from 52px */
        height: 78px; /* Increased from 52px */
    }
}
