* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d2b16b;
    --dark-red: #dd4b43;
    --black: #000000;
    --white: #ffffff;
    --gray: #666666;
    --dark-bg: #000000;
    --gradient-bottom: linear-gradient(to right, var(--dark-red), rgba(239, 85, 77, 0.708), transparent);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-red);
    padding: 2rem 0.3rem;
    border-radius: 0 50px 50px 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intimate-concert-text {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(to right, var(--gold), var(--white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 2s ease infinite;
    background-size: 200% 200%;
    margin-bottom: 2rem;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.intimate-concert-container {
    margin-bottom: 3rem;
}

.intimate-concert-subtext {
    background: linear-gradient(to right, var(--white), var(#c19b2e));
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    margin: 12px;
}

.social-link {
    width: 35.8px;
    height: 35.8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* Menu Button */
.menu-btn {
    padding: 5px 7px;
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    color: var(--white);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    padding: 5px 5px;
    text-align: center;
}

.nav-content ul {
    list-style: none;
}

.nav-content li {
    margin: 2rem 0;
    position: relative;
}

.language-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.344);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown {
    position: relative;
}

.dropdown-menu li {
    font-size: 0.8rem;
    margin: 0.3rem 0;
    text-align: center;
}

.lang-option {
    color: var(--white);
    text-decoration: none;
    font-weight: 200;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    text-align: center;
}

.lang-option:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-toggle {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-content a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-content a:hover {
    color: var(--gold);
}

/* Sections */
.section {
    min-height: 100vh;
    display: none;
    padding: 2rem;
}

.section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 100;
    letter-spacing: 0.05em;
    color: var(--gold);
}

/* Home Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-image {
    position: relative;
    display: inline-block;
    height: fit-content;
}

.hero-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
    position: relative;
    filter: brightness(1.2);
}

.hero-divider {
    width: 100%;
    height: 40px;
    background: var(--gradient-bottom);
    margin: -1rem 0;
}

.hero-logo {
    position: absolute;
    bottom: -90px;
    left: -20px;
    width: 150px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* Pantallas grandes: foto ocupa 50% del ancho */
@media (min-width: 1000px) {
    .hero-photo {
        width: 55vw;
        height: auto;
        max-width: 600px;
        height: 55vh;
    }
    
    .hero-logo {
        width: 20vw;
        max-width: 360px;
        bottom: -130px;
        left: -70px;
    }
}

/* Pantallas medianas */
@media (max-width: 768px) {
    .hero-photo {
        width: 390px;
        height: 390px;
        object-fit: cover
    }

    .hero-divider{
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        width: 250px;
        bottom: -45px;
        left: -35px;
    }
}

/* Pantallas pequeñas */
@media (max-width: 480px) {
    .hero-photo {
        width: 280px;
        height: 280px;
    }

    .hero-divider {
        height: 30px;
    }
    
    .hero-logo {
        width: 180px;
        bottom: -50px;
        left: -20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content .hero-title {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-content .album-info {
        order: 1;
    }
}

.album-info {
    text-align: center;
}

.album-cover, .album-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin: 0 auto 2rem;
    object-fit: cover;
}

.album-placeholder {
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--black);
}

.album-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: lowercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    min-width: 200px;
    max-width: 300px;
    margin: 0 auto;
    justify-content: space-between;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: #c19b2e;
}

.hero-title h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--gold);
    text-align: right;
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.music-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.music-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.album-art {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.platform-link {
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.video-card:hover .play-button {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-meta {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        padding: 0 0.5rem;
    }
    
    .video-info {
        padding: 0.8rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Prevent autofill white background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.8) inset;
    -webkit-text-fill-color: var(--gold);
    transition: background-color 5000s ease-in-out 0s;
    border-color: var(--gold);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--black);
    padding: 0 0.5rem;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sidebar {
        padding: 2rem 0.5rem;
        gap: 1rem;
    }
    
    .menu-btn {
        top: 1rem;
        right: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title h1 {
        text-align: center;
    }
    
    .nav-content a {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .music-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.active {
    animation: fadeIn 0.5s ease-out;
}

/* Sparkle Cursor Effect */
.sparkle-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 99999; /* Increased from 9999 to 99999 */
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff 0%, #d4af37 15%, transparent 40%);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
    box-shadow: 0 0 25px rgba(212, 175, 55, 1), 0 0 15px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 1);
    z-index: 99998;
}

@keyframes sparkleAnim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2); /* Slightly bigger */
        opacity: 1; /* Full opacity */
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5); /* Bigger at end */
        opacity: 0.3; /* Don't fade completely */
    }
}

/* Button sparkles */
.button-sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    animation: buttonSparkleAnim 1s ease-out forwards;
    z-index: 9999;
}

@keyframes buttonSparkleAnim {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* Video Player Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    background: var(--dark-bg);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.video-player {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

.error-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.error-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.error-content p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.error-content .btn {
    margin: 0 auto;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .video-player {
        height: 250px;
    }
    
    .video-modal-header {
        padding: 1rem;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
}

/* Video Page Styles */
.video-page {
    min-height: 100vh;
    background: var(--dark-bg);
    color: var(--white);
    padding: 2rem;
}

.video-header {
    margin-bottom: 2rem;
}

.back-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-decoration: underline;
    color: var(--white);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-player {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-unavailable {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn-external {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.play-btn-external:hover {
    background: var(--white);
    color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.video-note {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 1rem;
    font-style: italic;
}

.video-info h1 {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.video-meta {
    color: var(--gray);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .video-page {
        padding: 1rem;
    }
    
    .video-info h1 {
        font-size: 1.8rem;
    }
    
    .back-link {
        font-size: 1rem;
    }
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gold);
    color: var(--black);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 6px;
}

*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-close:hover {
    color: var(--gold);
}

/* Mobile: Collapsible sidebar for small screens */
@media (max-width: 500px) {
    .social-sidebar {
        transform: translateY(-50%) translateX(calc(-100% + 12px));
        transition: transform 0.3s ease;
        cursor: pointer;
        padding-right: 12px;
    }
    
    .social-sidebar:hover,
    .social-sidebar:active {
        transform: translateY(-50%) translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .intimate-concert-text {
        animation: none;
        background-position: 0% 50%;
    }
    
    .button-sparkle,
    .sparkle {
        display: none;
        animation: none;
    }
    
    .sparkle-cursor {
        display: none;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.animated {
    display: inline-block;
    border-right: 3px solid var(--gold); /* El cursor usando tu variable de color */
    white-space: pre-wrap;
    margin: 0;
    min-height: 1.2em; /* Evita que el layout salte cuando está vacío */
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--gold); }
}
