:root {
    /* Variables de entorno oscuro */
    --bg-base: #030712;
    --card-bg: #0b1329;
    --cf-orange: #f38020;
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.15);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-dim: rgba(255, 255, 255, 0.04);
    --ease-cf: cubic-bezier(0.16, 1, 0.3, 1);

    /* Inicialización estática para mitigar errores de análisis del IDE */
    --mouse-x: 0px;
    --mouse-y: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* ------------------------------------------------------------------------------------------------------------- */
/* ==========================================================================
   CONTENEDOR ESTILO NETWORK CLOUDFLARE
   ========================================================================== */
.hero-globe-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.globe-viewport-cloudflare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px; /* Tamaño expandido para apreciar el grid */
    aspect-ratio: 1.2 / 1; /* Formato ligeramente panorámico como la captura */
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 1; /* Globo detrás del contenido */
    /* Recorte radial sutil para desvanecer los polos inferiores */
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0) 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0) 72%);
}

.hero-section {
    position: relative;
    z-index: 10; /* Contenido al frente del globo */
    text-align: center;
    padding: 120px 20px 60px;
}

#dotted-globe-canvas-cf {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#dotted-globe-canvas-cf:active {
    cursor: grabbing;
}

/* Marcador HUD en Centroamérica */
.geo-marker-ca-cf {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f38020;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 12px 3px #f38020, 0 0 0 4px rgba(243, 128, 32, 0.2);
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-cf-sys 3s infinite ease-in-out;
}

@keyframes pulse-cf-sys {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
/*----------------------------------------------------------------------------------------- */
/* =========================================
   CONTENEDOR DE RED (INTEGRACIÓN LUMÍNICA)
   ========================================= */
#cloudflare-network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 1.0; /* Ajustado a 1.0 para maximizar la visibilidad de las constelaciones */
}

.main-hub {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   HERO SECCIÓN (ESTILO CLAUDE LABS)
   ========================================= */
.hero-section {
    text-align: center;
    padding: 120px 20px 60px;
}

.terminal-badge {
    display: inline-block;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   ENCABEZADOS GLOBALES
   ========================================= */
.section-header {
    text-align: center;
    margin: 7rem auto 3.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 12px;
}

.header-line {
    width: 32px;
    height: 2px;
    background: var(--cf-orange);
    margin: 0 auto;
}

/* =========================================
   MOTOR DE TARJETAS SPOTLIGHT DE TRANSPORTE
   ========================================= */
.info-block-cf {
    position: relative;
    border-radius: 8px;
    background: transparent;
    padding: 1px;
    overflow: hidden;
}

.block-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            500px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
            rgba(243, 128, 32, 0.15),
            transparent 45%
    );
    z-index: 1;
    pointer-events: none;
}

.block-content {
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 7px;
    padding: 2.25rem;
    height: 100%;
}

/* =========================================
   MODIFICACIÓN: ARQUITECTURA DEL AVATAR CIRCULAR
   ========================================= */
.avatar-container.circular,
.avatar-node.circular,
.avatar-fallback.circular,
.avatar-pulse-ring.circular {
    border-radius: 50% !important;
}

/* Forzar centrado del pulse circular */
.avatar-pulse-ring.circular {
    transform-origin: center;
    animation: radar-pulse-circular 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes radar-pulse-circular {
    0% { transform: scale(0.97); opacity: 0.8; }
    100% { transform: scale(1.12); opacity: 0; }
}

/* Alineación de nombre en barra lateral */
.sidebar-name {
    margin-top: 0.25rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-align: center;
}

/* =========================================
   CONTENEDOR DE LA BANDERA (EFECTO ONDA SINUSOIDAL)
   ========================================= */
.geo-badge-sv {
    position: absolute;
    bottom: 2px;
    right: 8px;
    width: 28px;
    height: 18px;
    z-index: 5;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);

    /* Maquetación cromática de franjas de El Salvador via CSS puro */
    background: linear-gradient(to bottom,
    #0047ab 0%, #0047ab 33.3%,
    #ffffff 33.3%, #ffffff 66.6%,
    #0047ab 66.6%, #0047ab 100%
    );

    /* Inicialización de aceleración por hardware */
    transform-origin: left center;
    animation: flag-wave-sv 2.5s infinite ease-in-out;
}

/* Simulación física de ondeado mediante desgloses de torsión tridimensional */
@keyframes flag-wave-sv {
    0% { transform: rotate(0deg) skewY(0deg) scale(1); }
    25% { transform: rotate(1deg) skewY(2deg) scale(0.98); }
    50% { transform: rotate(0deg) skewY(-1deg) scale(1); }
    75% { transform: rotate(-1deg) skewY(1deg) scale(0.99); }
    100% { transform: rotate(0deg) skewY(0deg) scale(1); }
}
/* =========================================
   ESTILOS COMPLEMENTARIOS: GEOLOCALIZACIÓN NODO
   ========================================= */
.identity-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -0.1rem;
    margin-bottom: 0.5rem;
    padding: 2px 6px;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease-cf);
}

/* Modificación dinámica al interactuar con el bloque del perfil */
.creator-profile:hover .identity-location {
    opacity: 1;
}

.location-icon-svg {
    width: 13px;
    height: 13px;
    color: var(--accent); /* Hereda el Terminal Blue para el marcador */
    flex-shrink: 0;
}

.location-text {
    font-family: monospace;
    font-size: 0.8rem;             /* Letra pequeña de control */
    color: #cbd5e1;                /* Balance cromático exacto blanco/gris */
    letter-spacing: -0.01em;
    white-space: nowrap;
}
/* =========================================
   MATRIZ DE ICONOS COMPACTOS (CONTACTO)
   ========================================= */
.contact-matrix-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
}

.contact-node-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--text-muted);
    transition: all 0.25s var(--ease-cf);
}

.contact-node-icon:hover {
    border-color: rgba(243, 128, 32, 0.3);
    background: rgba(243, 128, 32, 0.04);
    color: #ffffff;
    transform: translateY(-2px);
}

.icon-svg {
    width: 20px;
    height: 20px;
}

/* Punto de estado absoluto montado sobre el icono */
/*
.node-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid var(--card-bg);
}
*/

.node-status-dot.on { background: #10b981; box-shadow: 0 0 6px #10b981; }
.node-status-dot.standby { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }



.subtitle{
    font-size:0.85rem;
    color:#7aa2ff;
    text-align:center;
    margin-top:-10px;
    margin-bottom:10px;
}

/* =========================================
   PERFIL DE USUARIO
   ========================================= */
.creator-profile {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.identity-module {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.avatar-node {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-node.circular {
    border-radius: 50% !important;
}

.avatar-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 1px solid var(--accent);
    z-index: 1;
    animation: radar-pulse 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.avatar-pulse-ring.circular {
    border-radius: 50% !important;
}

@keyframes radar-pulse {
    0% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

.contact-matrix {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: monospace;
    transition: all 0.2s var(--ease-cf);
}

.contact-node:hover {
    border-color: rgba(243, 128, 32, 0.3);
    background: rgba(243, 128, 32, 0.04);
    color: #ffffff;
}

.node-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.node-status.on {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.node-status.standby {
    background: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
}

/* CONTENIDO DEL PERFIL */
.profile-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-role {
    font-size: 0.8rem;
    font-family: monospace;
    background: rgba(56, 189, 248, 0.06);
    color: var(--accent);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.profile-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.profile-milestones {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.profile-milestones li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.milestone-dot {
    width: 5px;
    height: 5px;
    background: var(--cf-orange);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--cf-orange);
}

/*
.identity-location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sidebar-name {
    text-align: center;
}
*/


/* -------------------------------------------------------------------------------------------------------------- */

/* ==========================================================================
   SISTEMA DE CINTA DE CERTIFICACIONES INFINITA (TICKER)
   ========================================================================== */

.certifications-ticker-container {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
    text-align: center;
}

/* Título superior de control con estilo atenuado */
.ticker-title {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

/* Ventana de visualización: Oculta los elementos que salen del marco */
.ticker-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;

    /* Máscara de desvanecimiento óptico en los extremos izquierdo y derecho */
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

/* Carril que contiene los dos grupos. Usa flex-row sin envoltura */
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-slide-left 28s linear infinite; /* Movimiento continuo y constante */
}

/* Pausa la animación cuando el usuario posiciona el cursor encima */
.ticker-track:hover {
    animation-play-state: paused;
}

/* Cada grupo representa el 50% del carril total */
.ticker-group {
    display: flex;
    align-items: center;
    gap: 4rem; /* Separación horizontal uniforme entre nodos */
    padding-right: 4rem; /* Mantiene la consistencia del gap con el bloque duplicado */
}

/* Nodo estructural individual de cada certificación */
.cert-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 160px;
    height: 50px;
    background: transparent;
    user-select: none;
}

/* Formato técnico mono para la entidad emisora (CompTIA, OffSec, etc.) */
.tech-mono {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

/* Formato estilizado para el nombre de la credencial */
.cert-name {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* --- CLASES DE COLOR COMPLEMENTARIAS (Alineadas con tu paleta existente) --- */
.text-orange { color: #f38020 !important; } /* Naranja Cloudflare */
.text-accent { color: #38bdf8 !important; } /* Azul Terminal */
.text-red { color: #ef4444 !important; }    /* Alerta / OffSec */
.text-blue { color: #3b82f6 !important; }   /* Blue Team */

/* ==========================================================================
   MATEMÁTICA DE LA ANIMACIÓN: TRASLACIÓN EXACTA DEL 50%
   ========================================================================== */
@keyframes ticker-slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Se desplaza exactamente la mitad del contenedor (el primer grupo completo) antes de reiniciar */
        transform: translate3d(-50%, 0, 0);
    }
}

/* -------------------------------------------------------------------------------------------------------------- */








/* =========================================
   GRIDS SIMÉTRICOS (COMPETENCIAS / PORTAFOLIO)
   ========================================= */
.skills-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.skills-grid .block-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.portfolio-grid .block-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.portfolio-grid .block-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.project-card-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skill-tags, .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tags span, .tech-stack span {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.tech-stack span {
    color: var(--accent);
    border-color: rgba(56, 189, 248, 0.12);
}

/* =========================================
   INTERFACES DE ACCIÓN (ESTILO TERMINAL CLAUDE)
   ========================================= */
.btn-disabled {
    display: block;
    width: max-content;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    color: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: monospace;
    cursor: not-allowed;
}

.btn-cloudflare-secondary {
    display: block;
    width: max-content;
    padding: 8px 16px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.02);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: monospace;
    font-weight: 500;
    transition: all 0.2s var(--ease-cf);
}

.btn-cloudflare-secondary:hover {
    background: var(--accent);
    color: var(--bg-base);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
    border-color: var(--accent);
}

/* =========================================
   LÍNEA DE TIEMPO ACENTUADA
   ========================================= */
.timeline-container {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.timeline-node {
    position: relative;
    margin-bottom: 3.5rem;
}

.node-marker {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--cf-orange);
}

.node-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 6px;
}

.node-date {
    color: var(--cf-orange);
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.node-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.node-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   SISTEMA DE ANIMACIÓN ASÍNCRONA
   ========================================= */
.hidden {
    opacity: 0;
    transform: translateY(12px);
    transition: transform 0.6s var(--ease-cf), opacity 0.6s var(--ease-cf);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    animation: cfSlideUp 0.7s var(--ease-cf) forwards;
}

@keyframes cfSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   FOOTER COHERENTE
   ========================================= */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    text-align: center;
    margin-top: 8rem;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: monospace;
}

/* MEDIA QUERIES INTERFACES MÓVILES */
@media (max-width: 768px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   ESTILOS COMPLEMENTARIOS DE TELEMETRÍA
   ========================================= */
.telemetry-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.node-mono {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.pulse-indicator {
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.pulse-indicator.online {
    background: rgba(16, 185, 129, 0.06);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.font-mono {
    font-family: monospace;
}

.text-accent {
    color: var(--accent) !important;
}

.text-orange {
    color: var(--cf-orange) !important;
}

/* Borde delgado blanco para cards específicas */
.card-white-border {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botón Principal: Celeste Sólido de Alta Visibilidad */
.btn-cloudflare-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--bg-base);
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: monospace;
    font-weight: 700;
    transition: all 0.25s var(--ease-cf);
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.2);
}

.btn-cloudflare-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-base);
    transform: translateY(-2px);
}

/* Botón Secundario: Transparente/Delineado estilo Terminal */
.btn-cloudflare-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.02);
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: monospace;
    font-weight: 500;
    transition: all 0.25s var(--ease-cf);
}

.btn-cloudflare-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--bg-base);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
    transform: translateY(-2px);
}
