.gvlaxy-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.06);
}

.gvlaxy-progress-fill {
    height: 100%;
    width: 0;
    background: var(--gold, #d4af37);
    transition: width 0.1s linear;
}

body.invite-locked .gvlaxy-progress-bar {
    display: none;
}

body.invite-opened .gvlaxy-progress-bar {
    display: block;
}

.gvlaxy-quick-tools {
    position: fixed;
    bottom: 90px;
    right: 18px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gvlaxy-tool-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.95);
    color: var(--gold, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.gvlaxy-tool-btn:hover {
    transform: scale(1.08);
    background: var(--gold, #d4af37);
    color: #fff;
}

.gvlaxy-toast {
    position: fixed;
    bottom: 140px;
    right: 18px;
    background: var(--dark-card, #1e1e1e);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 9991;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.gvlaxy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.gvlaxy-confetti-piece {
    position: fixed;
    width: 8px;
    height: 8px;
    top: -10px;
    z-index: 99999;
    pointer-events: none;
    animation: gvlaxyConfettiFall linear forwards;
}

@keyframes gvlaxyConfettiFall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@media print {
    .gvlaxy-quick-tools,
    .gvlaxy-progress-bar,
    .music-btn {
        display: none !important;
    }

    body.invite-locked .invite-content {
        opacity: 1 !important;
        visibility: visible !important;
    }
}
