.vastu-compass-container-e949138b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --float-distance: -12px;
    animation: compassFloat_e949138b 6s ease-in-out infinite;
}

.vastu-compass-link-e949138b {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 24px;
    text-decoration: none;
    overflow: hidden;
}

.vastu-compass-link-e949138b:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.85);
}

.vastu-compass-inner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vastu-compass-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vastu-compass-text-e949138b {
    color: #ffffff;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    font-family: inherit;
    margin: 0;
}

.vastu-compass-subtitle-e949138b {
    color: #cccccc;
    letter-spacing: 1px;
    font-size: 12px;
    text-align: center;
    font-family: inherit;
    margin: 0;
    font-style: italic;
}

@keyframes compassFloat_e949138b {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(var(--float-distance)); }
}