/* Fireworks Button and Container Styles */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.fireworks-container.active {
    display: block;
}

#fireworks {
    width: 100%;
    height: 100%;
}

.launch-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 15px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700);
    border: none;
    border-radius: 50px;
    color: var(--bg-darker);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.launch-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.launch-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.launch-btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .launch-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Fireworks Styles */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.launch-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700);
    border: none;
    border-radius: 50%;
    color: var(--bg-darker);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    user-select: none;
}

.launch-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.launch-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.launch-btn:active {
    transform: translateY(0) scale(0.95);
}

.launch-btn i {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .launch-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}