.tae-text-animation-wrapper {
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.tae-animated-text {
    display: inline-block;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
}

.tae-animated-text .char {
    display: inline-block;
    opacity: 0;
    transform-origin: center;
    will-change: transform, opacity, filter;
}

/* Efectos especiales */
.tae-animated-text[data-animation="neon_glow"] .char {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0ff, 0 0 40px #0ff;
}

.tae-animated-text[data-animation="matrix"] .char {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #00ff00;
}

.tae-animated-text[data-animation="glitch"] .char {
    position: relative;
}

.tae-animated-text[data-animation="rainbow"] .char {
    font-weight: 900;
}

.tae-animated-text[data-animation="typewriter"] {
    border-right: 2px solid currentColor;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { border-color: currentColor; }
    51%, 100% { border-color: transparent; }
}

/* Soporte para modo rotatorio */
.tae-animated-text[data-mode="rotating"] {
    min-height: 1.4em;
}

@media (max-width: 768px) {
    .tae-animated-text {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .tae-animated-text {
        font-size: 1.2em;
    }
}
