.large-animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 160px 160px;
    border: none;
    background: linear-gradient(45deg, #D7F4FF 0%, #6bd6ff 100%);
    color: white;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,0.2);
    min-width: 180px;
}

.large-animated-button.model {
    background: #D7F4FF;
}
.large-animated-button.obs {
    background: #F6FFD5;
}

.large-animated-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(0,0,0,0.3);
}

.large-animated-button:hover .button-sphere {
    transform: scale(1.1) translateX(0px) rotate(0deg);
}

.large-animated-text-default {
position: absolute;
top: 90%;
color: black;
align-items: center;
justify-content: center;
}

.button-sphere {
    position: absolute;
    opacity: 1;
    transition: all 0.5s ease;
}

.button-dot {
    position: absolute;
    opacity: 1;
    transition: all 0.5s ease;
}

.button-telescope {
    position: absolute;
    opacity: 1;
    transition: all 0.5s ease;
}

.button-sensor {
    position: absolute;
    opacity: 1;
    transition: all 0.5s ease;
}

.large-animated-button:hover .button-sensor {
    transform: scale(1.3) translateX(-4px) translateY(4px) rotate(0deg);
}

.large-animated-button:hover .button-telescope {
    transform: scale(1.1);
}

