#nombreSeccionObtener {
    display: inline-block;
    
    /* Gradiente con colores MUY brillantes pero manteniendo tonos oscuros */
    background: linear-gradient(135deg,
        #A00000,  /* Rojo intenso */
        #4A0000,  /* Rojo oscuro profundo */
        #8C007F,  /* Magenta brillante */
        #8B5A00,  /* Ámbar oscuro */
        #00A000,  /* Verde brillante */
        #005A00,  /* Verde oscuro intenso */
        #2A5A2A   /* Verde militar brillante */
    );
    background-size: 400% 400%;
    
    border-radius: 8px;
    padding: 3px 15px;
    
    /* Texto con brillo intenso */
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 16px rgba(160, 0, 0, 0.7),
        0 0 24px rgba(0, 160, 0, 0.5);
    
    /* Animación rápida y muy visible */
    animation: ultraBrillanteGradient 5s ease-in-out infinite;
    font-size: 32px;
    
    /* Borde brillante */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 15px rgba(160, 0, 0, 0.6),
        0 0 30px rgba(0, 160, 0, 0.4),
        0 0 45px rgba(140, 0, 127, 0.3),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
    
    /* Transición con brillo */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto hover EXTRA brillante */
#nombreSeccionObtener:hover {
    animation-duration: 3s;
    box-shadow: 
        0 0 25px rgba(160, 0, 0, 0.9),
        0 0 45px rgba(0, 160, 0, 0.7),
        0 0 65px rgba(140, 0, 127, 0.6),
        0 0 85px rgba(139, 90, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(160, 0, 0, 1),
        0 0 30px rgba(0, 160, 0, 0.8),
        0 0 40px rgba(140, 0, 127, 0.6);
}

/* Animación ULTRA brillante */
@keyframes ultraBrillanteGradient {
    0% { 
        background-position: 0% 50%;
        box-shadow: 
            0 0 15px rgba(160, 0, 0, 0.6),
            0 0 30px rgba(0, 160, 0, 0.4),
            0 0 45px rgba(140, 0, 127, 0.3);
    }
    33% { 
        background-position: 50% 50%;
        box-shadow: 
            0 0 20px rgba(140, 0, 127, 0.8),
            0 0 35px rgba(139, 90, 0, 0.6),
            0 0 50px rgba(160, 0, 0, 0.4);
    }
    66% { 
        background-position: 100% 50%;
        box-shadow: 
            0 0 20px rgba(0, 160, 0, 0.8),
            0 0 35px rgba(42, 90, 42, 0.6),
            0 0 50px rgba(140, 0, 127, 0.4);
    }
    100% { 
        background-position: 0% 50%;
        box-shadow: 
            0 0 15px rgba(160, 0, 0, 0.6),
            0 0 30px rgba(0, 160, 0, 0.4),
            0 0 45px rgba(140, 0, 127, 0.3);
    }
}

/* VERSIÓN NEÓN - MÁXIMO BRILLO */
#nombreSeccionObtener.neon {
    background: linear-gradient(135deg,
        #FF0000,  /* Rojo neón */
        #8B0000,  /* Rojo oscuro */
        #FF00FF,  /* Magenta neón */
        #FFA500,  /* Naranja */
        #00FF00,  /* Verde neón */
        #006400,  /* Verde oscuro */
        #32CD32   /* Verde lima */
    );
    background-size: 400% 400%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: neonGradient 4s linear infinite;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(0, 255, 0, 0.6),
        0 0 60px rgba(255, 0, 255, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 10px #FFFFFF,
        0 0 20px #FF0000,
        0 0 30px #00FF00,
        0 0 40px #FF00FF;
}

@keyframes neonGradient {
    0% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(90deg);
    }
    100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* VERSIÓN CON BORDE NEÓN ANIMADO */
#nombreSeccionObtener.borde-neon {
    background: #000000;
    border: 3px solid transparent;
    position: relative;
    z-index: 1;
}

#nombreSeccionObtener.borde-neon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg,
        #FF0000, #FF1493, #9400D3, #0000FF,
        #00FF00, #FFFF00, #FF0000
    );
    background-size: 300% 300%;
    border-radius: 11px;
    z-index: -1;
    animation: neonBorder 3s linear infinite;
    filter: blur(5px);
    opacity: 0.9;
}

#nombreSeccionObtener.borde-neon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg,
        #FF0000, #FF1493, #9400D3, #0000FF,
        #00FF00, #FFFF00, #FF0000
    );
    background-size: 300% 300%;
    border-radius: 11px;
    z-index: -2;
    animation: neonBorder 3s linear infinite reverse;
    filter: blur(10px);
    opacity: 0.5;
}

@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Para móviles con máximo brillo */
@media (max-width: 768px) {
    #nombreSeccionObtener {
        font-size: 14px !important;
        padding: 2px 12px;
        animation-duration: 7s;
        box-shadow: 
            0 0 15px rgba(160, 0, 0, 0.7),
            0 0 25px rgba(0, 160, 0, 0.5);
    }
    
    #nombreSeccionObtener.neon,
    #nombreSeccionObtener.borde-neon {
        animation-duration: 5s;
        box-shadow: 
            0 0 15px rgba(255, 0, 0, 0.9),
            0 0 25px rgba(0, 255, 0, 0.7);
    }
}

/* Efecto de pulso neón intenso */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(160, 0, 0, 0.6),
            0 0 30px rgba(0, 160, 0, 0.4);
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.5),
            0 0 16px rgba(160, 0, 0, 0.7);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(160, 0, 0, 1),
            0 0 50px rgba(0, 160, 0, 0.8),
            0 0 70px rgba(140, 0, 127, 0.6);
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 0.8),
            0 0 24px rgba(160, 0, 0, 1),
            0 0 36px rgba(0, 160, 0, 0.9);
    }
}

#nombreSeccionObtener.pulsante-neon {
    animation: 
        ultraBrillanteGradient 5s ease-in-out infinite,
        neonPulse 2s ease-in-out infinite;
}

/* Efecto de chispeo aleatorio (brillo extra) */
@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

#nombreSeccionObtener.chispeante {
    position: relative;
    overflow: hidden;
}

#nombreSeccionObtener.chispeante::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 70%
    );
    animation: sparkle 1.5s ease-in-out infinite;
    pointer-events: none;
}