body {
    font-size: 17px;
    background-color: #0b0616;
    color: rgb(203 213 225);
    overflow-x: hidden;
}

/* FONDOS CON GRAN PRESENCIA MORADA */
.ambient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-color: #0b0616;
    background-image:
        radial-gradient(at 20% 0%, rgba(109, 40, 217, 0.2) 0px, transparent_60%),
        radial-gradient(at 80% 100%, rgba(109, 40, 217, 0.2) 0px, transparent 60%);
}

.purple-blob {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vh;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: floatBlob 32.5s infinite alternate ease-in-out;
}

.cyan-blob {
    position: fixed;
    bottom: 10%;
    right: -10%;
    width: 50vw;
    height: 50vh;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: floatBlob 26s infinite alternate-reverse ease-in-out;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(8%, 8%) scale(1.1);
    }
}

/* TEXTOS Y DEGRADADOS */
.text-gradient {
    background: linear-gradient(135deg, #6d28d9 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--tw-shadow-glassCard);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px -10px rgba(109, 40, 217, 0.2);
}

/* ETIQUETAS DE SECCIÓN (Para identificar visualmente) */
.section-tag {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6d28d9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #6d28d9;
}

/* DROPDOWN MENU */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.group:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* NUEVA TARJETA HERO */
.hero-card {
    background: linear-gradient(145deg, rgba(11, 6, 22, 0.8) 0%, rgba(11, 6, 22, 0.6) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* EFECTO MÁQUINA DE ESCRIBIR */
.typing-cursor::after {
    content: '|';
    color: #00d2ff;
    font-size: 1.2em;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
