
        .glass-card {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        }

        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cyber-border {
            position: relative;
            border: 2px solid transparent;
            border-image: linear-gradient(45deg, #3b82f6, #8b5cf6);
            border-image-slice: 1;
        }

        .cyber-border::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            z-index: -1;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            filter: blur(10px);
            opacity: 0.5;
            border-radius: inherit;
        }

        .avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            margin: 6px;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .avatar:hover {
            transform: scale(1.05);
            border-color: #3b82f6;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
        }

        .avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .avatar.locked {
            opacity: 0.5;
            cursor: not-allowed;
            filter: grayscale(80%);
        }

        .avatar.locked::after {
            content: "🔒";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: white;
            text-shadow: 0 0 5px rgba(0,0,0,0.8);
        }

        #avatar-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        #avatar-modal.show {
            visibility: visible;
            opacity: 1;
        }

        #modal-content {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
            width: 90%;
            max-width: 800px;
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
        }

        #close-modal-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #94a3b8;
            transition: color 0.3s ease;
        }

        #close-modal-btn:hover {
            color: #3b82f6;
        }

        .role-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .role-badge::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right, 
                rgba(255,255,255,0.3), 
                rgba(255,255,255,0)
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(30deg) translate(-30%, -30%); }
            100% { transform: rotate(30deg) translate(30%, 30%); }
        }

        .progress-ring {
            position: relative;
            width: 120px;
            height: 120px;
        }

        .progress-ring-circle {
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
            transition: stroke-dashoffset 0.5s;
        }

        .chart-container {
            position: relative;
            height: 200px;
            width: 100%;
        }

        .hacker-text {
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 5px rgba(59, 130, 246, 0.7);
        }

        .cyberpunk-btn {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
        }

        .cyberpunk-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
        }

        .cyberpunk-btn::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right, 
                rgba(255,255,255,0.3), 
                rgba(255,255,255,0)
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        .terminal-effect {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid #3b82f6;
            border-radius: 5px;
            padding: 15px;
            position: relative;
        }

        .terminal-effect::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        }

        .glow-effect {
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .section-title {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, transparent);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
            margin-right: 8px;
            margin-bottom: 8px;
        }

        .badge i {
            margin-right: 4px;
        }

        /* Efecto para insignias desbloqueadas */
.badge.unlocked {
    background: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.5);
}



/* Animación de brillo */
@keyframes shine {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Estilo para la descripción del rol */
#role-description {
    background: rgba(30, 41, 59, 0.5);
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
}

#role-description:hover {
    background: rgba(30, 41, 59, 0.7);
    border-left-color: #8b5cf6;
}

/* Ajuste para el contenedor de rol */
.section-title::after {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, transparent);
}
