/* Circular Text Styles */
.circular-text-wrapper {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 208px;
    height: 208px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.circular-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateText 40s linear infinite;
}

.circular-text-path {
    font-family: 'Inter', sans-serif;
    font-size: 13.7px;
    font-weight: 700;
    fill: rgba(245, 245, 245, 0.9);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
    text-transform: uppercase;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .circular-text-wrapper {
        width: 156px;
        height: 156px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .circular-text-path {
        font-size: 13.7px;
    }
}

@media (max-width: 480px) {
    .circular-text-wrapper {
        width: 130px;
        height: 130px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .circular-text-path {
        font-size: 13.7px;
    }
}