@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

.text-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
}

.text-logo:hover {
    transform: translateY(-1px);
}

.text-logo .jerk {
    color: #ff3366;
    text-transform: uppercase;
}

.text-logo .roulette {
    color: #ffffff;
    text-transform: uppercase;
}

.text-logo .wheel {
    display: inline-block;
    color: #8a8a8a;
    font-size: 0.8em;
    opacity: 0.8;
    animation: spin 10s linear infinite;
    margin-left: 5px;
    vertical-align: baseline;
    position: relative;
    top: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .text-logo {
        font-size: 1.2rem;
    }
}
