.experience-card {
    transition: all 0.3s ease;
    opacity: 0.8;
}
.experience-card:hover {
    opacity: 1;
    transform: translateX(10px);
    border-left-color: #10b981;
}
body {
    background-color: #0f172a;
}
.glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
#markdown-content h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}
#markdown-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
#markdown-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.625;
}
#markdown-content code {
    background-color: #1e293b;
    color: #6ee7b7;
    padding: 0.25rem;
    border-radius: 0.25rem;
}
#markdown-content pre {
    background-color: #0f172a;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    overflow-x: auto;
    border: 1px solid #334155;
}
#markdown-content ul {
    list-style: disc inside;
    color: #94a3b8;
    margin-bottom: 1rem;
}
#markdown-content h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

#markdown-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
#markdown-content h2::before {
    content: "##";
    font-family: "Courier New", monospace;
    color: #059669;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

#markdown-content p {
    color: #cbd5e1;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

#markdown-content strong {
    @apply text-emerald-400 font-semibold;
}

/* Listas y viñetas */
#markdown-content ul {
    @apply space-y-3 text-slate-300 mb-8;
}
#markdown-content li {
    @apply flex items-center gap-3 text-sm;
}
#markdown-content li::before {
    content: "▹";
    @apply text-emerald-500 font-bold;
}

#markdown-content pre {
    @apply rounded-2xl border border-slate-700 overflow-hidden shadow-2xl;
}
#markdown-content code {
    @apply text-sm;
}
