.logo {
    display: flex;
    align-items: right;
}

.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.globe {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at center, #3498db 50%, #2980b9 100%);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.light {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 10px;
    left: 10px;
    background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 60%);
    border-radius: 50%;
    z-index: 0;
    animation: lightSpread 5s infinite alternate;
    mask-image: radial-gradient(circle at center, transparent 30%, black 70%);
}

.text {
    color: white;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

@keyframes lightSpread {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}
