.gh-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #424242;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.gh-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.gh-loading-spinner {
    position: relative;
    width: 80px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gh-loading-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #33691E;
    animation: bounce 1s ease-in-out infinite, colorChange 3s ease-in-out infinite;
}

.gh-loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.gh-loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.gh-loading-wave {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 105, 30, 0.25) 0%, transparent 70%);
    animation: wave 1.6s ease-in-out infinite;
}

.gh-loading-wave:nth-child(4) {
    animation-delay: 0.2s;
}

.gh-loading-wave:nth-child(5) {
    animation-delay: 0.4s;
}

.gh-loading-wave:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        scale: 1;
    }
    50% {
        transform: translateY(-12px);
        scale: 1.2;
    }
}

@keyframes colorChange {
    0%, 100% {
        background: #33691E;
    }
    33% {
        background: #4CAF50;
    }
    66% {
        background: #FFFFFF;
    }
}

@keyframes wave {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}