        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
        
        :root {
            --cyan-500: #06b6d4;
            --cyan-600: #0891b2;
            --bg-dark: #1f2937; /* Gris oscuro para el fondo */
            --text-light: #f3f4f6;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background-color: var(--bg-dark); 
        }
        
        /* Contenedor del mapa (Fijo en el fondo) */
        .map-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 10; 
        }
        
        /* Estilo inicial del mapa (imagen de fondo más grande para permitir el movimiento) */
        .city-map {
            width: 150%; 
            height: 150%; 
            /* Placeholder de un mapa de ciudad estilizado en blanco y negro */
            background-image: url('https://placehold.co/1920x1080/000000/6b7280?text=Mapa+de+Conexiones');
            background-size: cover;
            background-position: center;
            opacity: 0.15; /* Mapa muy sutil en el fondo */
            transition: transform 0.1s linear; 
            filter: grayscale(100%) invert(0%); /* Filtro para un aspecto técnico */
        }
        
        /* Contenedor principal de bienvenida (encima del mapa) */
        .welcome-content {
            position: relative;
            z-index: 20; 
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        /* Estilo para la tarjeta de contenido */
        .content-card {
            background-color: rgba(255, 255, 255, 0.95); /* Fondo casi blanco con ligera transparencia */
            backdrop-filter: blur(5px); /* Efecto de desenfoque sobre el mapa */
            padding: 3rem; /* 48px */
            border-radius: 1rem; /* 16px */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 640px;
            width: 100%;
            animation: fadeIn 1s ease-out;
            border: 1px solid var(--cyan-500);
        }

        /* Título */
        .main-title {
            font-size: 3.5rem; /* 56px */
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .main-title span {
            color: var(--cyan-600);
        }

        /* Botones */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: white;
            background-color: var(--cyan-500);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background-color: var(--cyan-600);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: var(--cyan-600);
            background-color: #e5e7eb;
            border: 2px solid var(--cyan-500);
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background-color: #d1d5db;
            color: #1f2937;
            transform: translateY(-2px);
        }

        /* Media Queries para Responsividad */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            .content-card {
                padding: 2rem;
            }
            .btn-primary, .btn-secondary {
                margin-top: 1rem;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }