/* Game Logo Component Styles */
.asc-game-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    text-align: center;
}

.asc-game-logo__text {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.2);
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: glowPulse 3s ease-in-out infinite;
}

.asc-game-logo__subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 4px;
}

/* Enhanced glow animation class for JavaScript trigger */
.asc-logo-glow-animation .asc-game-logo__text {
    animation: glowPulseEnhanced 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.2);
    }

    50% {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.7), 0 0 25px rgba(59, 130, 246, 0.5), 0 0 35px rgba(59, 130, 246, 0.3);
    }
}

@keyframes glowPulseEnhanced {
    0%, 100% {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 25px rgba(59, 130, 246, 0.4), 0 0 35px rgba(59, 130, 246, 0.3);
    }

    50% {
        text-shadow: 0 0 25px rgba(59, 130, 246, 0.9), 0 0 35px rgba(59, 130, 246, 0.7), 0 0 45px rgba(59, 130, 246, 0.5);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .asc-game-logo__text {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .asc-game-logo__subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .asc-game-logo__text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .asc-game-logo__subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}
